Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 314 for Empties (0.12 sec)

  1. pkg/features/client_adapter.go

    		case clientfeatures.GA:
    			converted.PreRelease = featuregate.GA
    		case clientfeatures.Deprecated:
    			converted.PreRelease = featuregate.Deprecated
    		default:
    			// The default case implies programmer error.  The same set of prerelease
    			// constants must exist in both component-base and client-go, and each one
    			// must have a case here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                            // block waiting for access to some other project, which means it can proceed even if some other thread is waiting for a project lock it
                            // holds without causing a deadlock. This in turn implies that this thread does not need to release the project locks it holds while
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/node_matchers.h

    //    with the constant value `init`.  Implies Op("Const").
    //
    //  - Attr(name, value): Matches a single attribute with name `name` and value
    //    `value`.  Right now only boolean values are supported.
    //
    // Overlapping node properties may not be repeated in a single NodeWith(...)
    // matcher.  E.g. NodeWith(Op("Foo"), Op("Bar")) will CHECK-fail.  Since
    // ConstantValue implies Op("Const"), a single NodeWith matcher can't have both
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/types.go

    //
    //go:nosplit
    func (u *UnsafePointer) Load() unsafe.Pointer {
    	return Loadp(unsafe.Pointer(&u.value))
    }
    
    // StoreNoWB updates the value atomically.
    //
    // WARNING: As the name implies this operation does *not*
    // perform a write barrier on value, and so this operation may
    // hide pointers from the GC. Use with care and sparingly.
    // It is safe to use with values not found in the Go heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtEffects.kt

        }
    }
    
    public typealias KtContractCallsInPlaceContractEffectDeclaration = KaContractCallsInPlaceContractEffectDeclaration
    
    /**
     * Represents [kotlin.contracts.SimpleEffect.implies].
     */
    public class KaContractConditionalContractEffectDeclaration(
        private val backingEffect: KaContractEffectDeclaration,
        private val backingCondition: KaContractBooleanExpression
    ) : KaContractEffectDeclaration {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionSelector.java

        /**
         * Indicates if module metadata is required to determine if the
         * selector matches a candidate version.
         */
        boolean requiresMetadata();
    
        /**
         * Indicates if the selector implies that it matches only a single version.
         */
        boolean matchesUniqueVersion();
    
        /**
         * Indicates if the selector matches the given candidate version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics_test.go

    				`,
    		},
    	}
    
    	// Since prometheus' gatherer is global, other tests may have updated metrics already, so
    	// we need to reset them prior running this test.
    	// This also implies that we can't run this test in parallel with other auth tests.
    	authenticatedUserCounter.Reset()
    	authenticatedAttemptsCounter.Reset()
    
    	for _, tt := range testCases {
    		t.Run(tt.desc, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. hack/logcheck.conf

    structured k8s.io/apiserver/pkg/server/options/encryptionconfig/.*
    
    # The following packages have been migrated to contextual logging.
    # Packages matched here do not have to be listed above because
    # "contextual" implies "structured".
    contextual k8s.io/api/.*
    contextual k8s.io/apimachinery/pkg/util/runtime/.*
    contextual k8s.io/client-go/metadata/.*
    contextual k8s.io/client-go/tools/events/.*
    contextual k8s.io/client-go/tools/record/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    // library will feed zero value, which is the default value in the v3a schema.
    // The actual builtin operator code value will exist in the
    // `deprecated_builtin_code` field. At the same time, it implies that
    // `deprecated_builtin_code` >= `builtin_code` and the maximum value of the two
    // fields will be same with `deprecated_builtin_code'.
    //
    // - Supporting builtin operator codes beyonds 127
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyInternal.java

         */
        void maybeDiscardStateRequiredForGraphResolution();
    
        /**
         * Sets whether or not any configuration resolution is final and the state required for resolution can be
         * discarded.  Setting this to true implies that the configuration may be re-resolved again in the future.
         *
         * Defaults to false.
         */
        void setKeepStateRequiredForGraphResolution(boolean keepStateRequiredForGraphResolution);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top