Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for a$b (0.03 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		}
    	}
    
    	for _, item := range table {
    		a, b := item.a.DeepCopy(), item.b.DeepCopy()
    		a.AsDec()
    		if cmp := a.Cmp(b); cmp != item.cmp {
    			t.Errorf("%#v: unexpected Cmp: %d", item, cmp)
    		}
    		if cmp := b.Cmp(a); cmp != -item.cmp {
    			t.Errorf("%#v: unexpected inverted Cmp: %d", item, cmp)
    		}
    	}
    
    	for _, item := range table {
    		a, b := item.a.DeepCopy(), item.b.DeepCopy()
    		b.AsDec()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    func conjureMac(macPrefix string, ip net.IP) string {
    	if ip4 := ip.To4(); ip4 != nil {
    		a, b, c, d := ip4[0], ip4[1], ip4[2], ip4[3]
    		return fmt.Sprintf("%v-%02x-%02x-%02x-%02x", macPrefix, a, b, c, d)
    	} else if ip6 := ip.To16(); ip6 != nil {
    		a, b, c, d := ip6[15], ip6[14], ip6[13], ip6[12]
    		return fmt.Sprintf("%v-%02x-%02x-%02x-%02x", macPrefix, a, b, c, d)
    	}
    	return "02-11-22-33-44-55"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        }
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "plugin applied to multiple projects can register a shared service"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            serviceImplementation()
            buildFile << """
                class CounterPlugin implements Plugin<Project> {
                    void apply(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            given:
            file('files/a.a').createFile()
            file('files/a.b').createFile()
            file('files/dir/a.a').createFile()
            file('files/dir/a.b').createFile()
            file('files/dir/ignore.c').createFile()
            file('files/dir.b/a.a').createFile()
            file('files/dir.b/a.b').createFile()
            buildScript '''
                task (copy, type:Copy) {
                   from 'files'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal.go

    	existingCond.Reason = reason
    	existingCond.Message = fmt.Sprintf(message, args...)
    
    	return resList
    }
    
    func max(a, b int32) int32 {
    	if a >= b {
    		return a
    	}
    	return b
    }
    
    func min(a, b int32) int32 {
    	if a <= b {
    		return a
    	}
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. pkg/apis/storage/validation/validation_test.go

    		}
    	}
    }
    
    func TestCSINodeValidation(t *testing.T) {
    	driverName := "driver-name"
    	driverName2 := "1io.kubernetes-storage-2-csi-driver3"
    	longName := "my-a-b-c-d-c-f-g-h-i-j-k-l-m-n-o-p-q-r-s-t-u-v-w-x-y-z-ABCDEFGHIJKLMNOPQRSTUVWXYZ-driver" // 88 chars
    	nodeID := "nodeA"
    	longID := longName + longName + "abcdefghijklmnopqrstuvwxyz" // 202 chars
    	successCases := []storage.CSINode{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				t.Errorf("incorrect kms v1 detection: want=%v got=%v", tt.kmsv1, kmsUsed.v1Used)
    			}
    
    			if d := cmp.Diff(tt.want, got,
    				cmp.Comparer(func(a, b *kmsPluginProbe) bool {
    					return *a == *b
    				}),
    				cmp.Comparer(func(a, b *kmsv2PluginProbe) bool {
    					return *a == *b
    				}),
    			); d != "" {
    				t.Fatalf("HealthzConfig mismatch (-want +got):\n%s", d)
    			}
    		})
    	}
    }
    
    // tests for masking rules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    	return t
    }
    func s390xCCMaskToAux(c s390x.CCMask) Aux {
    	return c
    }
    func s390xRotateParamsToAux(r s390x.RotateParams) Aux {
    	return r
    }
    
    // uaddOvf reports whether unsigned a+b would overflow.
    func uaddOvf(a, b int64) bool {
    	return uint64(a)+uint64(b) < uint64(a)
    }
    
    // loadLSymOffset simulates reading a word at an offset into a
    // read-only symbol's runtime memory. If it would read a pointer to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // chance of all most important edges to be contracted.
      //
      // An example of where this might occur is with a digraph:
      // {A -> B, B -> C, A -> X, X -> C} where B is a Size operation and X is
      // not-compilable. In this case, the valid clusterings are {A,B} or {B,C}. B
      // should be clustered with A because it will prevent a potentially large
      // tensor from A being computed and copied.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    func funcNameForPrint(name string) string {
    	a, b, c := funcNamePiecesForPrint(name)
    	return a + b + c
    }
    
    // printFuncName prints a function name. name is the function name in
    // the binary's func data table.
    func printFuncName(name string) {
    	if name == "runtime.gopanic" {
    		print("panic")
    		return
    	}
    	a, b, c := funcNamePiecesForPrint(name)
    	print(a, b, c)
    }
    
    func printcreatedby(gp *g) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top