Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for bar7 (0.26 sec)

  1. pkg/apis/storage/validation/validation_test.go

    			},
    			newClass: &storage.VolumeAttributesClass{
    				DriverName: "kubernetes.io/bar",
    			},
    			shouldSucceed: false,
    		},
    		"invalid parameter update which changes values": {
    			oldClass: &storage.VolumeAttributesClass{
    				DriverName: "kubernetes.io/foo",
    				Parameters: map[string]string{
    					"foo": "bar1",
    				},
    			},
    			newClass: &storage.VolumeAttributesClass{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    	return err
    }
    
    type forLocalNameType int
    
    const (
    	forLocalName forLocalNameType = iota
    	notForLocalName
    )
    
    // encoding parses:
    //
    //	encoding ::= <(function) name> <bare-function-type>
    //	             <(data) name>
    //	             <special-name>
    func (st *state) encoding(params bool, local forLocalNameType) AST {
    	if len(st.str) < 1 {
    		st.fail("expected encoding")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    	}
    
    	a {
    		color: inherit !important;
    		text-decoration: underline !important;
    	}
    
    	a.bare,
    	a[href^="#"],
    	a[href^="mailto:"] {
    		text-decoration: none !important;
    	}
    
    	a[href^="http:"]:not(.bare):after,
    	a[href^="https:"]:not(.bare):after {
    		content: "(" attr(href) ")";
    		display: inline-block;
    		font-size: 0.875em;
    		padding-left: 0.25em;
    	}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	// Setup storage with the following structure:
    	//  /
    	//   - first/
    	//  |         - bar
    	//  |
    	//   - second/
    	//  |         - bar
    	//  |         - foo
    	barFirst := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "first", Name: "bar"}}
    	barSecond := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "second", Name: "bar"}}
    	fooSecond := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "second", Name: "foo"}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. pkg/controller/replicaset/replica_set_test.go

    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "bar", Namespace: "ns"},
    					Spec: apps.ReplicaSetSpec{
    						Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}},
    					},
    				},
    			},
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo3", Namespace: "ns", Labels: map[string]string{"foo": "bar"}}},
    			outRSName: "bar",
    		},
    	}
    	for _, c := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    This will do the following:
    
    * Add a standard header to the key
    * Rewrite the key using Gradle's own format, which trims the key to the bare minimum
    * Move the key to its sorted location, keeping the file reproducible
    
    [[sec:add-binary-keyring]]
    === Adding keys to the binary keyring
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    			// Mark the range we're about to scavenge as allocated, because
    			// we don't want any allocating goroutines to grab it while
    			// the scavenging is in progress. Be careful here -- just do the
    			// bare minimum to avoid stepping on our own scavenging stats.
    			p.chunkOf(ci).allocRange(base, npages)
    			p.update(addr, uintptr(npages), true, true)
    
    			// With that done, it's safe to unlock.
    			unlock(p.mheapLock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // always succeed.  When you downcast (that is, cast a pointer from
    // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
    // how do you know the pointer is really of type SubclassOfFoo?  It
    // could be a bare Foo, or of type DifferentSubclassOfFoo.  Thus,
    // when you downcast, you should use this macro.  In debug mode, we
    // use dynamic_cast<> to double-check the downcast is legal (we die
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // always succeed.  When you downcast (that is, cast a pointer from
    // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
    // how do you know the pointer is really of type SubclassOfFoo?  It
    // could be a bare Foo, or of type DifferentSubclassOfFoo.  Thus,
    // when you downcast, you should use this macro.  In debug mode, we
    // use dynamic_cast<> to double-check the downcast is legal (we die
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top