Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for 20something (0.35 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.something == '25%' || self.something == 1",
    
    				// In Kubernetes 1.23 and earlier, all int-or-string access must be guarded by a type check to prevent
    				// a runtime error attempting an equality check between string and int types.
    				"type(self.something) == string && self.something == '25%'",
    				"type(self.something) == int ? self.something == 1 : self.something == '25%'",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    // a given user or group. getsubids produces a line for each mapping configured.
    // Here we expect that there is a single mapping, and the same values are used for the subordinate user and group ID ranges.
    // The output is something like:
    // $ getsubids kubelet
    // 0: kubelet 65536 2147483648
    // $ getsubids -g kubelet
    // 0: kubelet 65536 2147483648
    func parseGetSubIdsOutput(input string) (uint32, uint32, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	}
    	if body2 == body3 {
    		t.Errorf("expected body2 and body3 to be different")
    	}
    }
    
    // Test for https://golang.org/issue/2616 (appropriate issue number)
    // This fails pretty reliably with GOMAXPROCS=100 or something high.
    func TestStressSurpriseServerCloses(t *testing.T) {
    	run(t, testStressSurpriseServerCloses, []testMode{http1Mode})
    }
    func testStressSurpriseServerCloses(t *testing.T, mode testMode) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	if cfg.BuildN {
    		// In -n mode, print a banner between packages.
    		// The banner is five lines so that when changes to
    		// different sections of the bootstrap script have to
    		// be merged, the banners give patch something
    		// to use to find its context.
    		sh.Print("\n#\n# " + p.ImportPath + "\n#\n\n")
    	}
    
    	if cfg.BuildV {
    		sh.Print(p.ImportPath + "\n")
    	}
    
    	if p.Error != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-master-certs'" 2>/dev/null
    }
    
    # Quote something appropriate for a yaml string.
    #
    # TODO(zmerlynn): Note that this function doesn't so much "quote" as
    # "strip out quotes", and we really should be using a YAML library for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	assertLockHeld(&sched.lock)
    
    	// Exclude extra M's, which are used for cgocallback from threads
    	// created in C.
    	//
    	// The purpose of the SetMaxThreads limit is to avoid accidental fork
    	// bomb from something like millions of goroutines blocking on system
    	// calls, causing the runtime to create millions of threads. By
    	// definition, this isn't a problem for threads created in C, so we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/net/http/server.go

    // It must only be called after the handler is done executing.
    func (w *response) shouldReuseConnection() bool {
    	if w.closeAfterReply {
    		// The request or something set while executing the
    		// handler indicated we shouldn't reuse this
    		// connection.
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/reflect/value.go

    	escapes(v.ptr)
    	// We treat this as a read operation, so we allow
    	// it even for unexported data, because the caller
    	// has to import "unsafe" to turn it into something
    	// that can be abused.
    	// Interface value is always bigger than a word; assume flagIndir.
    	return *(*[2]uintptr)(v.ptr)
    }
    
    // IsNil reports whether its argument v is nil. The argument must be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          "top" function is configurable.
    
          For example, the code
            x.a()
            x.b()
            %c = y.c()
            x.d(%c)
          would be transformed into something like
            call @x_1()
            %c = call @y_1()
            call @x_2(%c)
          with @x_1, @x_2 and @y_1 filled in.
      }];
      let constructor = "TF::CreateGroupByDialectPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    			db.mu.Lock()
    			deleted := db.connRequests.Delete(delHandle)
    			db.mu.Unlock()
    
    			db.waitDuration.Add(int64(time.Since(waitStart)))
    
    			// If we failed to delete it, that means something else
    			// grabbed it and is about to send on it.
    			if !deleted {
    				// TODO(bradfitz): rather than this best effort select, we
    				// should probably start a goroutine to read from req. This best
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top