Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for resultCh (0.2 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        `tf_device.replicate`, and associated `tf.TPUReplicatedInput` and
        `tf.TPUReplicatedOutput` ops are replaced as the `tf_device.replicate` operands
        and results. Otherwise, the single operands and results of the associated
        `tf.TPUReplicatedInput` and `tf.TPUReplicatedOutput` ops are simply forwarded to
        the `tf_device.cluster`.
    
        For example, the following non replicated computation:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    			attr:               alice2Attr,
    			expectedCompileErr: "",
    			expectedEvalErr:    "cel evaluation error: expression 'request.resourceAttributes.namespace == 'kittensandponies'' resulted in error: no such key: resourceAttributes",
    			expectedDecision:   authorizer.DecisionNoOpinion,
    			expressions: []apiserver.WebhookMatchCondition{
    				{
    					Expression: "request.user == 'alice2'",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. docs/de/docs/contributing.md

    Building docs for: en
    Building docs for: es
    Successfully built docs for: es
    ```
    
    </div>
    
    Dadurch werden alle diese unabhängigen MkDocs-Sites für jede Sprache erstellt, kombiniert und das endgültige Resultat unter `./site/` gespeichert.
    
    Dieses können Sie dann mit dem Befehl `serve` bereitstellen:
    
    <div class="termy">
    
    ```console
    // Verwenden Sie das Kommando „serve“ nachdem Sie „build-all“ ausgeführt haben.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/response-model.md

    * `tax: float = 10.5` hat einen Defaultwert `10.5`.
    * `tags: List[str] = []` hat eine leere Liste als Defaultwert: `[]`.
    
    Aber Sie möchten diese vielleicht vom Resultat ausschließen, wenn Sie gar nicht gesetzt wurden.
    
    Wenn Sie zum Beispiel Modelle mit vielen optionalen Attributen in einer NoSQL-Datenbank haben, und Sie möchten nicht ellenlange JSON-Responses voller Defaultwerte senden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. architecture/networking/pilot.md

    #### Pushes
    
    A push occurs when Istiod detects an update of some set of configuration is needed. This results in roughly the same result as a Request (new configuration is pushed to the client), and is just triggered by a different source.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. src/syscall/fs_wasip1.go

    //
    //go:wasmimport wasi_snapshot_preview1 fd_close
    //go:noescape
    func fd_close(fd int32) Errno
    
    // https://github.com/WebAssembly/WASI/blob/a2b96e81c0586125cc4dc79a5be0b78d9a059925/legacy/preview1/docs.md#-fd_filestat_set_sizefd-fd-size-filesize---result-errno
    //
    //go:wasmimport wasi_snapshot_preview1 fd_filestat_set_size
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. src/crypto/md5/md5_test.go

    	gen, asm := New().(*digest), New().(*digest)
    	buf := make([]byte, BlockSize*20) // arbitrary factor
    	rand.Read(buf)
    	blockGeneric(gen, buf)
    	block(asm, buf)
    	if *gen != *asm {
    		t.Error("block and blockGeneric resulted in different states")
    	}
    }
    
    // Tests for unmarshaling hashes that have hashed a large amount of data
    // The initial hash generation is omitted from the test, because it takes a long time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  8. src/encoding/pem/pem_test.go

    	}
    	result, remainder = Decode(remainder)
    	if !isEmpty(result) {
    		t.Errorf("#2 should be empty but got:%#v", result)
    	}
    	result, remainder = Decode(remainder)
    	if !isEmpty(result) {
    		t.Errorf("#3 should be empty but got:%#v", result)
    	}
    	result, remainder = Decode(remainder)
    	if !isEmpty(result) {
    		t.Errorf("#4 should be empty but got:%#v", result)
    	}
    
    	result, remainder = Decode(remainder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			require.Equal(t, len(evalResults), len(tc.results))
    			for i, result := range tc.results {
    				if result.EvalResult != evalResults[i].EvalResult {
    					t.Errorf("Expected result '%v' but got '%v'", result.EvalResult, evalResults[i].EvalResult)
    				}
    				if result.Error != nil && !strings.Contains(evalResults[i].Error.Error(), result.Error.Error()) {
    					t.Errorf("Expected result '%v' but got '%v'", result.Error, evalResults[i].Error)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    	}
    }
    
    func getRequirement(key string, op selection.Operator, vals sets.String, t *testing.T) Requirement {
    	req, err := NewRequirement(key, op, vals.List())
    	if err != nil {
    		t.Errorf("NewRequirement(%v, %v, %v) resulted in error:%v", key, op, vals, err)
    		return Requirement{}
    	}
    	return *req
    }
    
    func TestAdd(t *testing.T) {
    	testCases := []struct {
    		name        string
    		sel         Selector
    		key         string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
Back to top