Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 233 for for1 (0.09 sec)

  1. cmd/admin-handlers.go

    			return
    		}
    	}
    
    	sizeStr := r.Form.Get(peerRESTSize)
    	durationStr := r.Form.Get(peerRESTDuration)
    	concurrentStr := r.Form.Get(peerRESTConcurrent)
    	storageClass := strings.TrimSpace(r.Form.Get(peerRESTStorageClass))
    	customBucket := strings.TrimSpace(r.Form.Get(peerRESTBucket))
    	autotune := r.Form.Get("autotune") == "true"
    	noClear := r.Form.Get("noclear") == "true"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	{as: ACOPY, a1: C_REG, a6: C_REG, type_: 92, size: 4},                           /* copy/paste facility, x-form */
    	{as: ADARN, a1: C_U15CON, a6: C_REG, type_: 92, size: 4},                        /* deliver random number, x-form */
    	{as: AMADDHD, a1: C_REG, a2: C_REG, a3: C_REG, a6: C_REG, type_: 83, size: 4},   /* multiply-add high/low doubleword, va-form */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // For example, 'go build -gcflags=-S fmt' prints the disassembly
    // only for package fmt, while 'go build -gcflags=all=-S fmt'
    // prints the disassembly for fmt and all its dependencies.
    //
    // For more about specifying packages, see 'go help packages'.
    // For more about where packages and binaries are installed,
    // run 'go help gopath'.
    // For more about calling between Go and C/C++, run 'go help c'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    		t.Fatalf("failed to enqueue controller for node %v", node2.Name)
    	}
    }
    
    func TestAddPod(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		logger, ctx := ktesting.NewTestContext(t)
    		manager, _, _, err := newTestController(ctx)
    		if err != nil {
    			t.Fatalf("error creating DaemonSets controller: %v", err)
    		}
    		ds1 := newDaemonSet("foo1")
    		ds1.Spec.UpdateStrategy = *strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    <code>true</code>.
    </p>
    
    <pre>
    for cond { S() }    is the same as    for ; cond ; { S() }
    for      { S() }    is the same as    for true     { S() }
    </pre>
    
    <h4 id="For_range">For statements with <code>range</code> clause</h4>
    
    <p>
    A "for" statement with a "range" clause
    iterates through all entries of an array, slice, string or map,
    or values received on a channel. For each entry it assigns <i>iteration values</i>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          return failure();
    
        // Determine which axis is being used for the cumulative operation.
        //
        // For a cumulative op, window_dimensions should be of the form:
        //  dense<[1, 1, N, 1]>
        // where N is the same as the size of the corresponding input dimension
        // and there is a 1-entry for each input dimension not being operated
        // over.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    		},
    	}
    
    	for i, test := range table {
    		rows, err := printNode(&test.node, printers.GenerateOptions{})
    		if err != nil {
    			t.Fatalf("Error generating table rows for Node: %#v", err)
    		}
    		for i := range rows {
    			rows[i].Object.Object = nil
    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	expectedParams := map[string]string{
    		"param1":  "description for param1",
    		"param2":  "description for param2",
    		"atAPath": "",
    	}
    	for _, p := range route.ParameterDocs {
    		data := p.Data()
    		if desc, exists := expectedParams[data.Name]; exists {
    			if desc != data.Description {
    				t.Errorf("unexpected description for parameter %s: %s\n", data.Name, data.Description)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/static/webcomponents.min.js

    t:n}}function n(){}var r=0,o=1,i=2,a=3;n.prototype={calcEditDistances:function(e,t,n,r,o,i){for(var a=i-o+1,s=n-t+1,c=new Array(a),l=0;l<a;l++)c[l]=new Array(s),c[l][0]=l;for(var u=0;u<s;u++)c[0][u]=u;for(var l=1;l<a;l++)for(var u=1;u<s;u++)if(this.equals(e[t+u-1],r[o+l-1]))c[l][u]=c[l-1][u-1];else{var d=c[l-1][u]+1,p=c[l][u-1]+1;c[l][u]=d<p?d:p}return c},spliceOperationsFromEditDistances:function(e){for(var t=e.length-1,n=e[0].length-1,s=e[t][n],c=[];t>0||n>0;)if(0!=t)if(0!=n){var l,u=e[t-1][n-...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
                "type": "string"
              },
              "name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
Back to top