Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for includedIf (0.17 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    }
    
    var readModGraphDebugOnce sync.Once
    
    // readModGraph reads and returns the module dependency graph starting at the
    // given roots.
    //
    // The requirements of the module versions found in the unprune map are included
    // in the graph even if they would normally be pruned out.
    //
    // Unlike LoadModGraph, readModGraph does not attempt to diagnose or update
    // inconsistent roots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	ClusterScope ScopeType = "Cluster"
    	// NamespacedScope means that scope is limited to namespaced objects.
    	NamespacedScope ScopeType = "Namespaced"
    	// AllScopes means that all scopes are included.
    	AllScopes ScopeType = "*"
    )
    
    // FailurePolicyType specifies a failure policy that defines how unrecognized errors from the admission endpoint are handled.
    // +enum
    type FailurePolicyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
      // and the same audit annotation key, the annotation key will be identical.
      // In this case, the first annotation written with the key will be included
      // in the audit event and all subsequent annotations with the same key
      // will be discarded.
      //
      // Required.
      optional string key = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/go/build/build.go

    type fileEmbed struct {
    	pattern string
    	pos     token.Position
    }
    
    // matchFile determines whether the file with the given name in the given directory
    // should be included in the package being constructed.
    // If the file should be included, matchFile returns a non-nil *fileInfo (and a nil error).
    // Non-nil errors are reserved for unexpected problems.
    //
    // If name denotes a Go program, matchFile reads until the end of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    	// cannot be represented by asn1.ObjectIdentifier, it will not be included in
    	// PolicyIdentifiers, but will be present in Policies, which contains all parsed
    	// policy OIDs.
    	PolicyIdentifiers []asn1.ObjectIdentifier
    
    	// Policies contains all policy identifiers included in the certificate.
    	// In Go 1.22, encoding/gob cannot handle and ignores this field.
    	Policies []OID
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. .bazelrc

    build:linux --define=PREFIX=/usr
    build:linux --define=LIBDIR=$(PREFIX)/lib
    build:linux --define=INCLUDEDIR=$(PREFIX)/include
    build:linux --define=PROTOBUF_INCLUDE_PATH=$(PREFIX)/include
    build:macos --define=PREFIX=/usr
    build:macos --define=LIBDIR=$(PREFIX)/lib
    build:macos --define=INCLUDEDIR=$(PREFIX)/include
    build:macos --define=PROTOBUF_INCLUDE_PATH=$(PREFIX)/include
    # TF_SYSTEM_LIBS do not work on windows.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Upgrade to Ant 1.10.13
    
    Ant has been updated to https://github.com/apache/ant/blob/rel/1.10.13/WHATSNEW[Ant 1.10.13].
    
    Since the previous version was 1.10.11, the https://github.com/apache/ant/blob/rel/1.10.12/WHATSNEW[1.10.12] changes are also included.
    
    ==== Upgrade to CodeNarc 3.2.0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	// Instead, must renegotiate before it does.
    	// Not likely enough to bother.
    	panic("TLS: sequence number wraparound")
    }
    
    // explicitNonceLen returns the number of bytes of explicit nonce or IV included
    // in each record. Explicit nonces are present only in CBC modes after TLS 1.0
    // and in certain AEAD modes in TLS 1.2.
    func (hc *halfConn) explicitNonceLen() int {
    	if hc.cipher == nil {
    		return 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/BUILD

        ],
    )
    
    package_group(
        name = "friends",
        includes = [
            "//tensorflow/compiler/tf2xla:friends",
        ],
    )
    
    # defs.cc/h only contains string constants, and can be included in mobile
    # builds.
    filegroup(
        name = "mobile_srcs_no_runtime",
        srcs = [
            "defs.cc",
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // We also need to add the implicit capability if it was seen before as an explicit
            // capability in order to detect the conflict between the two.
            // Note that the fact that the implicit capability is not included in other cases
            // is not a bug but a performance optimization.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top