Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for Programmed (0.12 sec)

  1. CHANGELOG/CHANGELOG-1.21.md

    - Kube-proxy iptables: new metric sync_proxy_rules_iptables_total that exposes the number of rules programmed per table in each iteration ([#99653](https://github.com/kubernetes/kubernetes/pull/99653), [@aojea](https://github.com/aojea)) [SIG Instrumentation and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/11-language-change.yml

      - type: dropdown
        id: author-go-experience
        attributes:
          label: "Go Programming Experience"
          description: "Would you consider yourself a novice, intermediate, or experienced Go programmer?"
          options:
            - "Novice"
            - "Intermediate"
            - "Experienced"
          default: 1
    
      - type: input
        id: author-other-languages-experience
        attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/loopbce.go

    					}
    					if addWillOverflow(v, step) {
    						return false
    					}
    					if inclusive && v != limit.AuxInt || !inclusive && v+1 != limit.AuxInt {
    						// We know a better limit than the programmer did. Use our limit instead.
    						limit = f.constVal(limit.Op, limit.Type, v, true)
    						inclusive = true
    					}
    					return true
    				}
    				if step == 1 && !inclusive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. docs/de/docs/deployment/concepts.md

    ## Ressourcennutzung
    
    Ihr(e) Server ist (sind) eine **Ressource**, welche Sie mit Ihren Programmen, der Rechenzeit auf den CPUs und dem verfügbaren RAM-Speicher verbrauchen oder **nutzen** können.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. android/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)
  6. pkg/kubelet/pod_workers.go

    	if status.terminatingAt.IsZero() {
    		klog.V(4).InfoS("Pod worker is complete but did not have terminatingAt set, likely programmer error", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    	if !status.terminatedAt.IsZero() {
    		klog.V(4).InfoS("Pod worker is complete and had terminatedAt set, likely programmer error", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    	status.finished = true
    	status.working = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top