Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for inaccessible (0.16 sec)

  1. pkg/controller/garbagecollector/garbagecollector_test.go

    						makeNode(pod1ns1, withOwners(deployment1extensions)), // child referencing inaccessible apiVersion
    						makeNode(deployment1extensions, virtual),             // virtual parent with inaccessible apiVersion - requeued to end
    					},
    				}),
    
    				// 18,19: observe delete of pod2 from step 14
    				// final state: virtual parent for inaccessible apiVersion and child of that parent remain in graph, queued for delete attempts with backoff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// schema, but they would be accessible even if they were not
    				"self.embedded.kind == 'Pod'",
    				"self.embedded.apiVersion == 'v1'",
    				"self.embedded.metadata.name == 'foo'",
    				"self.embedded.metadata.generateName == 'pickItForMe'",
    				// the specified embedded fields are accessible
    				"self.embedded.spec.field1 == 'a'",
    			},
    			errors: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"uid": "1234",
    				"baz": "qux"
    			}`, valid.Unix()),
    			want: &user.DefaultInfo{
    				Name: "jane",
    			},
    		},
    		// test to ensure omitempty fields not included in user info
    		// are set and accessible for CEL evaluation.
    		{
    			name: "test user validation rule doesn't fail when user info is empty except username",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    Function literals are <i>closures</i>: they may refer to variables
    defined in a surrounding function. Those variables are then shared between
    the surrounding function and the function literal, and they survive as long
    as they are accessible.
    </p>
    
    
    <h3 id="Primary_expressions">Primary expressions</h3>
    
    <p>
    Primary expressions are the operands for unary and binary expressions.
    </p>
    
    <pre class="ebnf">
    PrimaryExpr =
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          const SignatureDef& signature_def = key_and_signature_def.second;
    
          // It is safe to skip "__saved_model_init_op" since it is an internal
          // signature that is not user-accessible. This signature will be handled
          // in ConvertInitializer().
          if (sig_def_key == "__saved_model_init_op") {
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //	    If file ends in a slash or names an existing directory,
    //	    the test is written to pkg.test in that directory.
    //
    // The test binary also accepts flags that control execution of the test; these
    // flags are also accessible by 'go test'. See 'go help testflag' for details.
    //
    // For more about build flags, see 'go help build'.
    // For more about specifying packages, see 'go help packages'.
    //
    // See also: go build, go vet.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top