Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 965 for excluded (0.18 sec)

  1. cni/pkg/plugin/plugin_test.go

    	cniConf := buildMockConf(true, url)
    
    	excludedNS := "testExcludeNS"
    	pod, ns := buildFakePodAndNSForClient()
    
    	app := corev1.Container{Name: "app"}
    	ns.ObjectMeta.Name = excludedNS
    	ns.ObjectMeta.Labels = map[string]string{constants.DataplaneModeLabel: constants.AmbientRedirectionEnabled}
    
    	pod.ObjectMeta.Namespace = excludedNS
    	pod.Spec.Containers = []corev1.Container{app}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/settings.go

    	SelectorString string
    
    	// The regex specifying which tests to skip. This follows inverted semantics of golang's
    	// -test.run flag, which only supports positive match. If an entire package is meant to be
    	// excluded, it can be filtered with `go list` and explicitly passing the list of desired
    	// packages. For example: `go test $(go list ./... | grep -v bad-package)`.
    	SkipString  ArrayFlags
    	SkipMatcher *Matcher
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	// Remove old pre-tool binaries.
    	for _, old := range oldtool {
    		xremove(pathf("%s/bin/%s", goroot, old))
    	}
    
    	// Special release-specific setup.
    	if isRelease {
    		// Make sure release-excluded things are excluded.
    		for _, dir := range unreleased {
    			if p := pathf("%s/%s", goroot, dir); isdir(p) {
    				fatalf("%s should not exist in release build", p)
    			}
    		}
    	}
    }
    
    /*
     * Tool building
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

    // represented by the .status.containerStatuses and .status.initContainerStatuses
    // fields in the Pod status, respectively. Containers completed with success
    // (exit code 0) are excluded from the requirement check.
    message PodFailurePolicyOnExitCodesRequirement {
      // Restricts the check for exit codes to the container with the
      // specified name. When null, the rule applies to all containers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/crypto/x509/verify.go

    	maxConstraintComparisons int,
    	nameType string,
    	name string,
    	parsedName any,
    	match func(parsedName, constraint any) (match bool, err error),
    	permitted, excluded any) error {
    
    	excludedValue := reflect.ValueOf(excluded)
    
    	*count += excludedValue.Len()
    	if *count > maxConstraintComparisons {
    		return CertificateInvalidError{c, TooManyConstraints, ""}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

             */
            Selected(true),
    
            /**
             * An evicted component has been evicted and will never, ever be chosen starting from the moment it is evicted.
             * Either because it has been excluded, or because conflict resolution selected a different version.
             */
            Evicted(false);
    
            private final boolean candidateForConflictResolution;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. fastapi/routing.py

                    include=include,
                    exclude=exclude,
                    by_alias=by_alias,
                    exclude_unset=exclude_unset,
                    exclude_defaults=exclude_defaults,
                    exclude_none=exclude_none,
                )
    
            return jsonable_encoder(
                value,
                include=include,
                exclude=exclude,
                by_alias=by_alias,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  8. src/cmd/trace/goroutines.go

    </table>
    
    <h3 id="ranges">Special ranges</h3>
    
    The table below describes how much of the traced period each goroutine spent in
    certain special time ranges.
    If a goroutine has spent no time in any special time ranges, it is excluded from
    the table.
    For example, how much time it spent helping the GC. Note that these times do
    overlap with the times from the first table.
    In general the goroutine may not be executing in these special time ranges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/validtype.go

    				// before type checking is complete, any exported type that is invalid
    				// will have an invalid underlying type and we can't reach here with
    				// such a type (invalid types are excluded above).
    				// Thus, if we reach here with a type t, both t and t.Origin() (if
    				// different in the first place) must be from the current package;
    				// they cannot have been imported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/go/types/validtype.go

    				// before type checking is complete, any exported type that is invalid
    				// will have an invalid underlying type and we can't reach here with
    				// such a type (invalid types are excluded above).
    				// Thus, if we reach here with a type t, both t and t.Origin() (if
    				// different in the first place) must be from the current package;
    				// they cannot have been imported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top