Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 96 for Programmed (0.15 sec)

  1. guava-testlib/src/com/google/common/testing/EqualsTester.java

       * equal to any other equality groups added to this tester.
       *
       * <p>The {@code @Nullable} annotations on the {@code equalityGroup} parameter imply that the
       * objects, and the array itself, can be null. That is for programmer convenience, when the
       * objects come from factory methods that are themselves {@code @Nullable}. In reality neither the
       * array nor its contents can be null, but it is not useful to force the use of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. pkg/volume/hostpath/host_path.go

    		return nil
    	}
    	if b.noTypeChecker {
    		return nil
    	} else {
    		return checkType(b.GetPath(), b.pathType, b.hu)
    	}
    }
    
    // SetUpAt does not make sense for host paths - probably programmer error.
    func (b *hostPathMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	return fmt.Errorf("SetUpAt() does not make sense for host paths")
    }
    
    func (b *hostPathMounter) GetPath() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. docs/de/docs/deployment/manually.md

    ## Das Serverprogramm installieren
    
    Sie können einen ASGI-kompatiblen Server installieren mit:
    
    === "Uvicorn"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:35 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/AbstractCache.java

    /**
     * This class provides a skeletal implementation of the {@code Cache} interface to minimize the
     * effort required to implement this interface.
     *
     * <p>To implement a cache, the programmer needs only to extend this class and provide an
     * implementation for the {@link #put} and {@link #getIfPresent} methods. {@link #getAllPresent} is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Serialization.java

        try {
          Field field = clazz.getDeclaredField(fieldName);
          return new FieldSetter<>(field);
        } catch (NoSuchFieldException e) {
          throw new AssertionError(e); // programmer error
        }
      }
    
      // Secret sauce for setting final fields; don't make it public.
      static final class FieldSetter<T> {
        private final Field field;
    
        private FieldSetter(Field field) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager.go

    			}
    			klog.V(3).InfoS("Marking terminal pod as failed", "oldPhase", status.Phase, "pod", klog.KObj(pod), "podUID", pod.UID)
    			status.Phase = v1.PodFailed
    		default:
    			klog.ErrorS(fmt.Errorf("unknown phase: %v", status.Phase), "Unknown phase, programmer error", "pod", klog.KObj(pod), "podUID", pod.UID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  7. docs/fr/docs/contributing.md

    
    
    !!! tip
        Chaque fois que vous installez un nouveau paquet avec `pip` sous cet environnement, activez à nouveau l'environnement.
    
        Cela permet de s'assurer que si vous utilisez un programme terminal installé par ce paquet (comme `flit`), vous utilisez celui de votre environnement local et pas un autre qui pourrait être installé globalement.
    
    ### Flit
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	if s.postStartHooksCalled {
    		return fmt.Errorf("unable to add %q because PostStartHooks have already been called", name)
    	}
    	if postStartHook, exists := s.postStartHooks[name]; exists {
    		// this is programmer error, but it can be hard to debug
    		return fmt.Errorf("unable to add %q because it was already registered by: %s", name, postStartHook.originatingStack)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/AbstractCache.java

    /**
     * This class provides a skeletal implementation of the {@code Cache} interface to minimize the
     * effort required to implement this interface.
     *
     * <p>To implement a cache, the programmer needs only to extend this class and provide an
     * implementation for the {@link #put} and {@link #getIfPresent} methods. {@link #getAllPresent} is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  10. pkg/controlplane/instance_test.go

    		if !strings.Contains(gvr.Version, "alpha") || !enabled {
    			continue
    		}
    
    		// we have enabled an alpha api by resource {g,v,r}, we also expect the
    		// alpha api by version {g,v} to be disabled. This is so a programmer
    		// remembers to add the new alpha version to alphaAPIGroupVersionsDisabledByDefault.
    		gr := gvr.GroupVersion()
    		if enabled, found := config.GroupVersionConfigs[gr]; !found || enabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top