Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 133 for nonexistent1 (0.27 sec)

  1. src/net/dnsclient_unix_test.go

    func BenchmarkGoLookupIPNoSuchHost(b *testing.B) {
    	testHookUninstaller.Do(uninstallTestHooks)
    	ctx := context.Background()
    	b.ReportAllocs()
    
    	for i := 0; i < b.N; i++ {
    		goResolver.LookupIPAddr(ctx, "some.nonexistent")
    	}
    }
    
    func BenchmarkGoLookupIPWithBrokenNameServer(b *testing.B) {
    	testHookUninstaller.Do(uninstallTestHooks)
    
    	conf, err := newResolvConfTest()
    	if err != nil {
    		b.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.23.md

    - Fixed a bug where using `kubectl patch` with `$deleteFromPrimitiveList` on a nonexistent or empty list would add the item to the list ([#105421](https://github.com/kubernetes/kubernetes/pull/105421), [@brianpursley](https://github.com/brianpursley))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "The default device to assign.">
      ];
      let description = [{
        Assigns the default device to all ops that have an empty (or
        nonexistent) device attribute.
    
        For example, if we have the code
    
        ```mlir
          %0 = "tf.Const"() {value = dense<[[42.0]]> : tensor<1x1xf32>} : () -> tensor<1x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	r.pkg = make([]uint32, npkg)
    	for i := 1; i < npkg; i++ { // PkgIdx 0 is a dummy invalid package
    		pkg := r.Pkg(i)
    		objidx, ok := l.objByPkg[pkg]
    		if !ok {
    			log.Fatalf("%v: reference to nonexistent package %s", r.unit.Lib, pkg)
    		}
    		r.pkg[i] = objidx
    	}
    
    	// load flags of package refs
    	for i, n := 0, r.NRefFlags(); i < n; i++ {
    		rf := r.RefFlags(i)
    		gi := l.resolve(r, rf.Sym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    -max-iterations : Maximum shape inference iterations
    ```
    ### `-tf-simple-device-assignment`
    
    _Simple device assignment in TF dialect._
    
    Assigns the default device to all ops that have an empty (or
    nonexistent) device attribute.
    
    For example, if we have the code
    
    ```mlir
      %0 = "tf.Const"() {value = dense<[[42.0]]> : tensor<1x1xf32>} : () -> tensor<1x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.10.md

        * inside of which a write lock was intended to prevent races against
        * VM creation, but the usage of the sync.RWMutex type is incorrect,
        * plus is placed in a defer call so the locking is effectively
        * nonexistent.  This patch adds an anonymous function call inside
        * the loop to correctly handle acquiring the write lock with deferred
        * unlock to run at that function's completion, following the normal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			name:            "Missing leading dot",
    			fieldPath:       "a",
    			pathOfFieldPath: path,
    			schema:          &sts,
    			errDetail:       "expected [ or . but got: a",
    		},
    		{
    			name:            "Nonexistent field",
    			fieldPath:       ".c",
    			pathOfFieldPath: path,
    			schema:          &sts,
    			errDetail:       "does not refer to a valid field",
    		},
    		{
    			name:            "Duplicate dots",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	db.SetMaxIdleConns(0)
    	setStrictFakeConnClose(t)
    	defer setStrictFakeConnClose(nil)
    
    	_, err := db.Query("SELECT|non_existent|name|")
    	if err == nil {
    		t.Fatal("Querying non-existent table should fail")
    	}
    }
    
    // Test cases where there's more than maxBadConnRetries bad connections in the
    // pool (issue 8834)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    		},
    		// Test case - 2.
    		// Abort non-existing upload ID.
    		{
    			bucket:             bucketName,
    			object:             objectName,
    			uploadID:           "nonexistent-upload-id",
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusNotFound,
    		},
    		// Test case - 3.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			fieldPath:       "a",
    			pathOfFieldPath: path,
    			schema:          &schema,
    			errMsg:          "expected [ or . but got: a",
    		},
    		{
    			name:            "Nonexistent field",
    			fieldPath:       ".c",
    			pathOfFieldPath: path,
    			schema:          &schema,
    			errMsg:          "does not refer to a valid field",
    		},
    		{
    			name:            "Duplicate dots",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
Back to top