Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for Def (0.2 sec)

  1. src/cmd/go/internal/work/exec.go

    //
    // The environment variable must be quoted correctly for
    // quoted.Split. This should be done before building
    // anything, for example, in BuildInit.
    func envList(key, def string) []string {
    	v := cfg.Getenv(key)
    	if v == "" {
    		v = def
    	}
    	args, err := quoted.Split(v)
    	if err != nil {
    		panic(fmt.Sprintf("could not parse environment variable %s with value %q: %v", key, v, err))
    	}
    	return args
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

    function prepare-etcd-manifest {
      local host_name=${ETCD_HOSTNAME:-$(hostname -s)}
    
      local resolve_host_script_py='
    import socket
    import time
    import sys
    
    timeout_sec=300
    
    def resolve(host):
      for attempt in range(timeout_sec):
        try:
          print(socket.gethostbyname(host))
          break
        except Exception as e:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

        * Example:
          ```yaml
          kind: ConfigMap
          apiVersion: v1
          metadata:
            name: kube-dns
            namespace: kube-system
          data:
            federations: abc=def
          ```
    * azure: support multiple ipconfigs on a NIC ([#36841](https://github.com/kubernetes/kubernetes/pull/36841), [@colemickens](https://github.com/colemickens))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			expectedCost: 4,
    		},
    		{name: "cost for extended lib calculated correctly: split",
    			obj:    objs("20", "200M"),
    			schema: schemas(stringType, stringType),
    			valid: []string{
    				"size('abc 123 def 123'.split(' ')) > 0",
    			},
    			expectedCost: 5,
    		},
    		{name: "cost for extended lib calculated correctly: join",
    			obj:    objs("20", "200M"),
    			schema: schemas(stringType, stringType),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		t.Errorf("Unexpected options value: %#v", opts)
    	}
    }
    
    func TestConnectWithOptionsAndPath(t *testing.T) {
    	responseText := "Hello World"
    	itemID := "theID"
    	testPath := "/a/b/c/def"
    	connectStorage := &ConnecterRESTStorage{
    		connectHandler: &OutputConnect{
    			response: responseText,
    		},
    		emptyConnectOptions: &genericapitesting.SimpleGetOptions{},
    		takesPath:           "atAPath",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    			t.Errorf("constructed struct %v not equal to itself", v1.Interface())
    		}
    
    		v1.FieldByIndex(table.idx).Set(ValueOf("abc"))
    		v2.FieldByIndex(table.idx).Set(ValueOf("def"))
    		if i1, i2 := v1.Interface(), v2.Interface(); DeepEqual(i1, i2) {
    			t.Errorf("constructed structs %v and %v should not be equal", i1, i2)
    		}
    
    		abc := "abc"
    		v1.FieldByIndex(table.idx).Set(ValueOf(abc))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    bio.br
    blog.br
    bmd.br
    boavista.br
    bsb.br
    campinagrande.br
    campinas.br
    caxias.br
    cim.br
    cng.br
    cnt.br
    com.br
    contagem.br
    coop.br
    coz.br
    cri.br
    cuiaba.br
    curitiba.br
    def.br
    des.br
    det.br
    dev.br
    ecn.br
    eco.br
    edu.br
    emp.br
    enf.br
    eng.br
    esp.br
    etc.br
    eti.br
    far.br
    feira.br
    flog.br
    floripa.br
    fm.br
    fnd.br
    fortal.br
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  8. src/encoding/json/testdata/code.json.gz

    ,"cl_weight":0.4752824858757062,"touches":3,"min_t":1258418412,"max_t":1308936637,"mean_t":1285128596},{"name":"ssl3ext.c","kids":[],"cl_weight":2.0376201482133687,"touches":9,"min_t":1258418412,"max_t":1308936637,"mean_t":1277012909},{"name":"ssl.def","kids":[],"cl_weight":0.9737312593244796,"touches":8,"min_t":1258418412,"max_t":1308670161,"mean_t":1277524038},{"name":"sslt.h","kids":[],"cl_weight":0.2578582434514638,"touches":4,"min_t":1258418412,"max_t":1290462158,"mean_t":1274381927},{"name...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top