Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 127 for a$b (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/networking/validation/validation_test.go

    						MatchLabels: map[string]string{"a": "b"},
    					},
    					Ingress: []networking.NetworkPolicyIngressRule{},
    				},
    			},
    			update: networking.NetworkPolicy{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "bar"},
    				Spec: networking.NetworkPolicySpec{
    					PodSelector: metav1.LabelSelector{
    						MatchLabels: map[string]string{"a": "b"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/cc/gradients/math_grad.cc

      // is just 1, so we only need replicate the output gradient on such a
      // dimension to its "expanded" shape.
      // Running example:
      // input is
      // [[a, b, c],
      //  [d, e, f]]
      // reduction_indices = [1]
      // Sum = [a + b + c, d + e + f]
      // if the gradient is [g1, g2]
      // We want the propagated gradient to be
      // [[g1, g1, g1],
      //  [g2, g2, g2]]
    
      // input_shape = [2, 3]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K 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