Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 438 for aloop (0.04 sec)

  1. pkg/controller/podgc/gc_controller.go

    	nodeutil "k8s.io/kubernetes/pkg/util/node"
    	utilpod "k8s.io/kubernetes/pkg/util/pod"
    	"k8s.io/kubernetes/pkg/util/taints"
    )
    
    const (
    	// gcCheckPeriod defines frequency of running main controller loop
    	gcCheckPeriod = 20 * time.Second
    	// quarantineTime defines how long Orphaned GC waits for nodes to show up
    	// in an informer before issuing a GET call to check if they are truly gone
    	quarantineTime = 40 * time.Second
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

            - -logtostderr
            - -configDir=/etc/k8s/dns/dnsmasq-nanny
            - -restartDnsmasq=true
            - --
            - -k
            - --cache-size=1000
            - --no-negcache
            - --dns-loop-detect
            - --log-facility=-
            - --server=/$DNS_DOMAIN/127.0.0.1#10053
            - --server=/in-addr.arpa/127.0.0.1#10053
            - --server=/ip6.arpa/127.0.0.1#10053
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. cluster/addons/dns/kube-dns/kube-dns.yaml.in

            - -logtostderr
            - -configDir=/etc/k8s/dns/dnsmasq-nanny
            - -restartDnsmasq=true
            - --
            - -k
            - --cache-size=1000
            - --no-negcache
            - --dns-loop-detect
            - --log-facility=-
            - --server=/dns_domain/127.0.0.1#10053
            - --server=/in-addr.arpa/127.0.0.1#10053
            - --server=/ip6.arpa/127.0.0.1#10053
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/runtime/gc_test.go

    	done := make(chan struct{})
    	var wg sync.WaitGroup
    	for i := 0; i < maxProcs-1; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			var hold *node
    		loop:
    			for {
    				hold = buildTree(5)
    				select {
    				case <-done:
    					break loop
    				default:
    				}
    			}
    			runtime.KeepAlive(hold)
    		}()
    	}
    	return func() {
    		close(done)
    		wg.Wait()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

        arg.setType(arg_type);
        resources[arg.getArgNumber()].live_value = arg;
        argument_types[arg.getArgNumber()] = arg_type;
        has_resources = true;
      };
    
      // Loop through the non `tf.VarHandleOp` resource arguments in the function,
      // validate its uses and subtype, and store a mapping from that argument to
      // itself as the current live value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. cluster/addons/dns/kube-dns/kube-dns.yaml.base

            - -logtostderr
            - -configDir=/etc/k8s/dns/dnsmasq-nanny
            - -restartDnsmasq=true
            - --
            - -k
            - --cache-size=1000
            - --no-negcache
            - --dns-loop-detect
            - --log-facility=-
            - --server=/__DNS__DOMAIN__/127.0.0.1#10053
            - --server=/in-addr.arpa/127.0.0.1#10053
            - --server=/ip6.arpa/127.0.0.1#10053
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/cmd/fix/main.go

    	// source code in a few cases. The official gofmt style is the
    	// output of the printer run on a standard AST generated by the parser,
    	// but the source we generated inside the loop above is the
    	// output of the printer run on a mangled AST generated by a fixer.
    	newSrc, err = gofmtFile(newFile)
    	if err != nil {
    		return err
    	}
    
    	if *doDiff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/firAnnotationUtils.kt

        useSiteSession: FirSession,
        annotationContainer: FirAnnotationContainer = firSymbol.fir,
    ): Boolean {
        return if (firSymbol.isFromCompilerRequiredAnnotationsPhase(classId, useSiteSession)) {
            // this loop by index is required to avoid possible ConcurrentModificationException
            val annotations = annotationContainer.resolvedCompilerRequiredAnnotations(firSymbol)
            for (index in annotations.indices) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/testing/benchmark_test.go

    		// and distribute work among them.
    		b.RunParallel(func(pb *testing.PB) {
    			// Each goroutine has its own bytes.Buffer.
    			var buf bytes.Buffer
    			for pb.Next() {
    				// The loop body is executed b.N times total across all goroutines.
    				buf.Reset()
    				templ.Execute(&buf, "World")
    			}
    		})
    	})
    }
    
    func TestReportMetric(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/encoding/base32/base32.go

    func (enc *Encoding) Encode(dst, src []byte) {
    	if len(src) == 0 {
    		return
    	}
    	// enc is a pointer receiver, so the use of enc.encode within the hot
    	// loop below means a nil check at every operation. Lift that nil check
    	// outside of the loop to speed up the encoder.
    	_ = enc.encode
    
    	di, si := 0, 0
    	n := (len(src) / 5) * 5
    	for si < n {
    		// Combining two 32 bit loads allows the same code to be used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top