Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 710 for nothings (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionHost.java

        }
    
        default DisplayName displayName(String type) {
            return Describables.of(displayName(), type);
        }
    
        /**
         * Rethrows the provided failures. Does nothing if the list of failures is empty.
         */
        default void rethrowFailure(String type, Collection<Throwable> failures) {
            mapFailure(type, failures).ifPresent(e -> {
                throw e;
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_unix.go

    	var info SysvShmDesc
    
    	_, err := SysvShmCtl(id, IPC_STAT, &info)
    	if err != nil {
    		// release the shared memory if we can't find the size
    
    		// ignoring error from shmdt as there's nothing sensible to return here
    		shmdt(addr)
    		return nil, err
    	}
    
    	// Use unsafe to convert addr into a []byte.
    	b := unsafe.Slice((*byte)(unsafe.Pointer(addr)), int(info.Segsz))
    	return b, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                }
                extensions.add('things', SomeThing)
                things {
                    letter = 'a'
                    withLetter('b')
                }
                assert things.letter == Letter.B
                things.other('ABC')
                assert things.letter == Letter.A
                things.other(Letter.C)
                assert things.letter == Letter.C
                things.other('A', 'ignore')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. ci/official/utilities/setup_docker.sh

    if [[ "$TFCI_DOCKER_PULL_ENABLE" == 1 ]]; then
      # Simple retry logic for docker-pull errors. Sleeps if a pull fails.
      # Pulling an already-pulled container image will finish instantly, so
      # repeating the command costs nothing.
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 15
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 30
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 60
      docker pull "$TFCI_DOCKER_IMAGE"
    fi 
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 18:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirBuiltInTypes.kt

        override val string: KaType by cachedBuiltin(builtinTypes.stringType)
    
        override val unit: KaType by cachedBuiltin(builtinTypes.unitType)
        override val nothing: KaType by cachedBuiltin(builtinTypes.nothingType)
        override val any: KaType by cachedBuiltin(builtinTypes.anyType)
    
        override val throwable: KaType by cachedBuiltin(builtinTypes.throwableType)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ReferenceShortener.kt

            classShortenStrategy: (KaClassLikeSymbol) -> ShortenStrategy,
            callableShortenStrategy: (KaCallableSymbol) -> ShortenStrategy,
        ): ShortenCommand {
            // Compiler implementation does nothing.
            // Descriptor-based shortening is implemented on the IDE plugin side.
            val ktFilePointer = SmartPointerManager.createPointer(file)
    
            return object : ShortenCommand {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    type Recorder interface {
    	// Record records why a runtime.Object was changed in an annotation.
    	Record(runtime.Object) error
    	MakeRecordMergePatch(runtime.Object) ([]byte, error)
    }
    
    // NoopRecorder does nothing.  It is a "do nothing" that can be returned so code doesn't switch on it.
    type NoopRecorder struct{}
    
    // Record implements Recorder
    func (r NoopRecorder) Record(obj runtime.Object) error {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtSubstitutor.kt

         */
        public fun substituteOrNull(type: KaType): KaType?
    
        /**
         * [KaSubstitutor] which does nothing on a type and always returns the type intact
         */
        public class Empty(override val token: KaLifetimeToken) : KaSubstitutor {
            override fun substituteOrNull(type: KaType): KaType? = withValidityAssertion { null }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. pkg/controller/volume/ephemeral/controller.go

    		if errors.IsNotFound(err) {
    			logger.V(5).Info("Ephemeral: nothing to do for pod, it is gone", "podKey", key)
    			return nil
    		}
    		logger.V(5).Info("Error getting pod from informer", "pod", klog.KObj(pod), "podUID", pod.UID, "err", err)
    		return err
    	}
    
    	// Ignore pods which are already getting deleted.
    	if pod.DeletionTimestamp != nil {
    		logger.V(5).Info("Ephemeral: nothing to do for pod, it is marked for deletion", "podKey", key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    	// Set correct "migrated-to" annotations on PVC and update in API server if
    	// necessary
    	newClaim, err := ctrl.updateClaimMigrationAnnotations(ctx, claim)
    	if err != nil {
    		// Nothing was saved; we will fall back into the same
    		// condition in the next call to this method
    		return err
    	}
    	claim = newClaim
    
    	if !metav1.HasAnnotation(claim.ObjectMeta, storagehelpers.AnnBindCompleted) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top