Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for logical (0.14 sec)

  1. src/reflect/all_test.go

    }
    
    // Given
    //	type Outer struct {
    //		*Inner
    //		...
    //	}
    // the compiler generates the implementation of (*Outer).M dispatching to the embedded Inner.
    // The implementation is logically:
    //	func (p *Outer) M() {
    //		(p.Inner).M()
    //	}
    // but since the only change here is the replacement of one pointer receiver with another,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

      final long refreshNanos;
    
      /** Entries waiting to be consumed by the removal listener. */
      // TODO(fry): define a new type which creates event objects and automates the clear logic
      final Queue<RemovalNotification<K, V>> removalNotificationQueue;
    
      /**
       * A listener that is invoked when an entry is removed due to expiration or garbage collection of
       * soft/weak entries.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			newObj: mustUnstructured(`
    				foo: bar
    			`),
    			errors: []string{
    				`root.foo: Invalid value: "string": gotta be baz`,
    			},
    		},
    		{
    			name: "changing field path does not change ratcheting logic",
    			schema: mustSchema(`
    				type: object
    				x-kubernetes-validations:
    				- rule: self.foo == "baz"
    				  message: gotta be baz
    				  fieldPath: ".foo"
    				properties:
    					bar:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	d := streaming.NewDecoder(fr, streamSerializer.Serializer)
    	return d
    }
    
    func TestGetPartialObjectMetadata(t *testing.T) {
    	now := metav1.Time{Time: metav1.Now().Rfc3339Copy().Local()}
    	storage := map[string]rest.Storage{}
    	simpleStorage := SimpleRESTStorage{
    		item: genericapitesting.Simple{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. src/reflect/value.go

    		escapes(*(*any)(x)) // the dereference may not always be safe, but never executed
    	}
    }
    
    // This is just a wrapper around abi.NoEscape. The inlining heuristics are
    // finnicky and for whatever reason treat the local call to noescape as much
    // lower cost with respect to the inliner budget. (That is, replacing calls to
    // noescape with abi.NoEscape will cause inlining tests to fail.)
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    name.tj
    net.tj
    nic.tj
    org.tj
    test.tj
    web.tj
    
    // tk : https://en.wikipedia.org/wiki/.tk
    tk
    
    // tl : https://en.wikipedia.org/wiki/.tl
    tl
    gov.tl
    
    // tm : http://www.nic.tm/local.html
    tm
    com.tm
    co.tm
    org.tm
    net.tm
    nom.tm
    gov.tm
    mil.tm
    edu.tm
    
    // tn : http://www.registre.tn/fr/
    // https://whois.ati.tn/
    tn
    com.tn
    ens.tn
    fin.tn
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    ton]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;li...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    	})).ts
    
    	c := ts.Client()
    	tr := c.Transport.(*Transport)
    
    	doReq := func(name string) {
    		// Do a POST instead of a GET to prevent the Transport's
    		// idempotent request retry logic from kicking in...
    		res, err := c.Post(ts.URL, "", nil)
    		if err != nil {
    			t.Fatalf("%s: %v", name, err)
    		}
    		if res.StatusCode != 200 {
    			t.Fatalf("%s: %v", name, res.Status)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n  1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n  2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n  3. If any matchCondition evaluates to an error (but none are FALSE):\n     - If failurePolicy=Fail,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

    list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n  1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n  2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n  3. If any matchCondition evaluates to an error (but none are FALSE):\n     - If failurePolicy=Fail,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
Back to top