Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for genrule (0.26 sec)

  1. tensorflow/BUILD

    )
    
    # Filter the DEF file to reduce the number of symbols to 64K or less.
    # Note that we also write the name of the pyd file into DEF file so that
    # the dynamic libraries of custom ops can find it at runtime.
    genrule(
        name = "tensorflow_filtered_def_file",
        srcs = [":tensorflow_def_file"],
        outs = ["tensorflow_filtered_def_file.def"],
        cmd = select({
            "//tensorflow:windows": """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. .bazelrc

    # are present on the local host machine but not on the remote execution machine,
    # leading to build failures. To resolve the issue, the following line is added
    # to make sure all Genrule targets are excuted locally.
    build:rbe_cross_compile_base_xla --config=rbe_cross_compile_base
    build:rbe_cross_compile_base_xla --strategy=Genrule=standalone
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    	if push == nil {
    		return nil, nil
    	}
    	mergedDR := node.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, node, svc.Hostname)
    	destinationRule := mergedDR.GetRule()
    	if destinationRule == nil {
    		return nil, nil
    	}
    	rule := destinationRule.Spec.(*networking.DestinationRule)
    	consistentHash := rule.GetTrafficPolicy().GetLoadBalancer().GetConsistentHash()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    					&Proxy{
    						Labels:          tt.sidecarConfig.Labels,
    						Metadata:        &NodeMetadata{Labels: tt.sidecarConfig.Labels},
    						ConfigNamespace: tt.sidecarConfig.Namespace,
    					}, host.Name("httpbin.org")).GetRule()
    				assert.Equal(t, dr, tt.expectedDr)
    			}
    		})
    	}
    }
    
    func TestIstioEgressListenerWrapper(t *testing.T) {
    	serviceA8000 := &Service{
    		Hostname:   "host",
    		Ports:      port8000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "CLGIJ", controls: 1, aux: "S390XCCMaskUint8"}, // unsigned 64-bit integer comparison
    	}
    
    	archs = append(archs, arch{
    		name:            "S390X",
    		pkg:             "cmd/internal/obj/s390x",
    		genfile:         "../../s390x/ssa.go",
    		ops:             S390Xops,
    		blocks:          S390Xblocks,
    		regnames:        regNamesS390X,
    		gpregmask:       gp,
    		fpregmask:       fp,
    		framepointerreg: -1, // not used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "JUMPTABLE", controls: 2, aux: "Sym"},
    	}
    
    	archs = append(archs, arch{
    		name:               "ARM64",
    		pkg:                "cmd/internal/obj/arm64",
    		genfile:            "../../arm64/ssa.go",
    		ops:                ops,
    		blocks:             blocks,
    		regnames:           regNamesARM64,
    		ParamIntRegNames:   "R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			waypointPolicy := s.authorizationPolicies.GetKey(krt.Key[model.WorkloadAuthorization](policyName))
    			if waypointPolicy == nil {
    				return nil
    			}
    			match := waypointPolicy.Authorization.GetGroups()[0].GetRules()[0].GetMatches()[0]
    			return slices.Map(match.Principals, func(sm *security.StringMatch) string {
    				return sm.GetExact()
    			})
    		}, []string{
    			"cluster.local/ns/ns1/sa/namespace-wide",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top