Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for var2 (0.17 sec)

  1. pkg/controller/endpointslicemirroring/utils_test.go

    			name: "create slice from endpoints with labels and annotations",
    			tweakEndpoint: func(ep *v1.Endpoints) {
    				labels := map[string]string{"foo": "bar"}
    				ep.Labels = labels
    				annotations := map[string]string{"foo2": "bar2"}
    				ep.Annotations = annotations
    			},
    			expectedSlice: discovery.EndpointSlice{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"foo":                      "bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 23 15:40:23 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. security/tools/jwt/samples/gen-jwt.py

    # limitations under the License.
    
    """Python script generates a JWT signed with custom private key.
    
    Example:
    ./gen-jwt.py  --iss example-issuer --aud foo,bar --claims=email:******@****.***,dead:beef key.pem -listclaim key1 val2 val3 -listclaim key2 val3 val4
    """
    from __future__ import print_function
    import argparse
    import copy
    import time
    
    from jwcrypto import jwt, jwk
    
    
    def main(args):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    go build
    
    -- go.mod --
    
    module foo
    
    go 1.19
    
    -- main.go --
    
    package main
    
    import "foo/bar"
    
    func Func1()
    
    func main() {
            Func1()
            bar.Bar2()
    }
    
    -- foo.s --
    
    TEXT main·Func1(SB),0,$0-0
            CALL bar·Bar+0x400(SB)
            CALL main·BigAsm(SB)
    // A trampoline will be placed here to bar.Bar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. pkg/volume/util/atomic_writer_test.go

    					"bar/zab.txt":      {Mode: 0644, Data: []byte("bar/zab.txt2")},
    					"foo/blaz/bar.txt": {Mode: 0644, Data: []byte("foo/blaz/bar2")},
    					"bar/zib/zab.txt":  {Mode: 0644, Data: []byte("bar/zib/zab.txt2")},
    					"add/new/keys.txt": {Mode: 0644, Data: []byte("addNewKeys")},
    				},
    				{
    					"foo/bar.txt":       {Mode: 0644, Data: []byte("foo/bar2")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

    import jcifs.smb1.util.Hexdump;
    
    public abstract class DcerpcHandle implements DcerpcConstants {
    
        /* Bindings are in the form:
         * proto:\\server[key1=val1,key2=val2]
         * or
         * proto:server[key1=val1,key2=val2]
         * or
         * proto:[key1=val1,key2=val2]
         *
         * If a key is absent it is assumed to be 'endpoint'. Thus the
         * following are equivalent:
         * proto:\\ts0.win.net[endpoint=\pipe\srvsvc]
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"double(self.val2) <= self.val4",
    				"double(self.val2) == self.val4",
    				"double(self.val2) >= self.val4",
    				"double(self.val3) > self.val4",
    				"double(self.val3) >= self.val4",
    
    				"self.val1 < int(self.val4)",
    				"self.val2 == int(self.val4)",
    				"self.val3 > int(self.val4)",
    
    				"double(self.val1) < self.val5",
    				"double(self.val2) == self.val5",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/plugin_test.go

    				Obj(),
    			oldNode:      st.MakeNode().Name("node-a").Label("foo", "bar1").Obj(),
    			newNode:      st.MakeNode().Name("node-a").Label("foo", "bar2").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		{
    			name: "node that match topologySpreadConstraints adds non-related label",
    			pod: st.MakePod().Name("p").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 06:30:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. pkg/filewatcher/fakefilewatcher_test.go

    		select {
    		case gotError := <-watcher.Errors(file):
    			t.Fatalf("Unexpected Errors() after Remove(): got %v", gotError)
    		default:
    		}
    	}
    
    	// verify double Add() / Remove()
    	for _, file := range []string{"foo2", "bar2", "baz2"} {
    		if err := watcher.Add(file); err != nil {
    			t.Fatalf("Add() returned error: %v", err)
    		}
    		if err := watcher.Add(file); err == nil {
    			t.Fatal("Adding a path that already exists should fail")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/poset.go

    				higher = val2
    				higherptr = ptr
    			}
    		}
    	} else {
    		var lower, higher int64
    		val1 := n.AuxInt
    		for val2, ptr := range po.constants {
    			if val1 == val2 {
    				panic("unreachable")
    			}
    			if val2 < val1 && (lowerptr == 0 || val2 > lower) {
    				lower = val2
    				lowerptr = ptr
    			} else if val2 > val1 && (higherptr == 0 || val2 < higher) {
    				higher = val2
    				higherptr = ptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

                }
                task jar2(type: Jar) {
                    from 'src2'
                    destinationDirectory = buildDir
                    archiveFileName = 'test2.zip'
                    manifest { attributes(attr: 'jar2') }
                }
                task jar(type: Jar) {
                    dependsOn jar1, jar2
                    from zipTree(jar1.archiveFile), zipTree(jar2.archiveFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top