Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nonexistent1 (0.15 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    								Key:             "example.org/admin_1",
    								ValueExpression: `claims.?is_admin.orValue(false) == true ? "true":""`,
    							},
    							{
    								Key:             "example.org/non_existent",
    								ValueExpression: `claims.?non_existent.orValue("default") == "default" ? "true":""`,
    							},
    						},
    					},
    				},
    				now: func() time.Time { return now },
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

        value: a
    `),
    			TwoWay: []byte(`
    mergingList:
      - value: b
    `),
    			ExpectedError: "does not contain declared merge key",
    		},
    	},
    	{
    		Description: "$deleteFromPrimitiveList of nonexistent item in primitive list should not add the item to the list",
    		StrategicMergePatchRawTestCaseData: StrategicMergePatchRawTestCaseData{
    			Original: []byte(`
    mergingIntList:
      - 1
      - 2
    `),
    			TwoWay: []byte(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K 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. 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)
  5. 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)
  6. 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)
Back to top