Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,511 for providedBy (0.15 sec)

  1. cmd/kubeadm/app/discovery/file/file.go

    // securely to the API Server using the provided CA cert/client certificates  and
    // optionally refreshes the cluster-info information from the cluster-info ConfigMap
    func ValidateConfigInfo(config *clientcmdapi.Config, discoveryTimeout time.Duration) (*clientcmdapi.Config, error) {
    	if len(config.Clusters) < 1 {
    		return nil, errors.New("the provided kubeconfig file must have at least one Cluster defined")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/sync/atomic/doc.go

    // AndInt32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Int32.And] instead.
    func AndInt32(addr *int32, mask int32) (old int32)
    
    // AndUint32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    # the requested package has been downloaded and checked for toolchain
    # upgrades.
    
    
    ! go install -cake=delicious -modcacherw example.com/printversion@v0.1.0
    stderr '^flag provided but not defined: -cake$'
    	# Because the -modcacherw flag was set, we should be able to modify the contents
    	# of a directory within the module cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/allocator.go

    var (
    	ErrFull              = errors.New("range is full")
    	ErrAllocated         = errors.New("provided port is already allocated")
    	ErrMismatchedNetwork = errors.New("the provided port range does not match the current port range")
    )
    
    type ErrNotInRange struct {
    	ValidPorts string
    }
    
    func (e *ErrNotInRange) Error() string {
    	return fmt.Sprintf("provided port is not in the valid range. The range of valid ports is %s", e.ValidPorts)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtResolveExtensionInfoProvider.kt

            analysisSession.resolveExtensionInfoProvider.getResolveExtensionScopeWithTopLevelDeclarations()
        }
    
        /**
         * Returns whether this [VirtualFile] was provided by a [KaResolveExtension].
         *
         * @see org.jetbrains.kotlin.analysis.api.resolve.extensions.KaResolveExtension
         * @see org.jetbrains.kotlin.analysis.api.resolve.extensions.KaResolveExtensionProvider
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    //   the user explicitly provided representative dataset configs to
    //   `calibration_options`. In that case, the explicit configs take precedence
    //   and the preset's configs are ignored.
    //   - For `QuantizationSpecs`, the expanded `QuantizationSpec`s will be
    //   populated first and user-provided `QuantizationSpec`s, if any, will be
    //   appended. This expresses the fact that user-provided specs take precedence.
    // * Preset unspecified
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. maven-resolver-provider/pom.xml

          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.plexus</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.inject</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/DefaultResourceLockCoordinationService.java

        }
    
        /**
         * Attempts an atomic, blocking lock on the provided resource locks.
         */
        public static InternalTransformer<ResourceLockState.Disposition, ResourceLockState> lock(Iterable<? extends ResourceLock> resourceLocks) {
            return new AcquireLocks(resourceLocks, true);
        }
    
        /**
         * Attempts an atomic, blocking lock on the provided resource locks.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 17:16:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

            private final Map<Key<?>, CachingProvider<?>> provided = new ConcurrentHashMap<>();
    
            public <T> void seed(Class<T> clazz, Provider<T> value) {
                provided.put(Key.get(clazz), new CachingProvider<>(value));
            }
    
            @SuppressWarnings("unchecked")
            public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) {
                Provider<?> provider = provided.computeIfAbsent(key, k -> new CachingProvider<>(unscoped));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

                DependencyScope.COMPILE,
                DependencyScope.PROVIDED);
    
        PathScope MAIN_RUNTIME =
                pathScope("main-runtime", ProjectScope.MAIN, DependencyScope.COMPILE, DependencyScope.RUNTIME);
    
        PathScope TEST_COMPILE = pathScope(
                "test-compile",
                ProjectScope.TEST,
                DependencyScope.COMPILE,
                DependencyScope.PROVIDED,
                DependencyScope.TEST_ONLY,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top