Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 104 for resolveMe (0.27 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        # node = anf.transform(node, ctx)
    
        graphs = cfg.build(node)
        node = qual_names.resolve(node)
        node = activity.resolve(node, ctx)
        node = reaching_definitions.resolve(node, ctx, graphs)
        node = reaching_fndefs.resolve(node, ctx, graphs)
        node = type_inference.resolve(node, ctx, graphs,
                                      TFRTypeResolver(self._op_defs))
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

     */
    
    
    package org.gradle.integtests.resolve
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.resolve.ResolveTestFixture
    import spock.lang.Issue
    
    import java.util.concurrent.CopyOnWriteArrayList
    
    class DependencySubstitutionRulesIntegrationTest extends AbstractIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    	//    of the caller.
    	//
    	// 4) We generate the "symbol resolver stub" x@plt (once per
    	//    dynamic function).  This is solely a branch to the glink
    	//    resolver stub.
    	//
    	// 5) We generate the glink resolver stub (only once).  This
    	//    computes which symbol resolver stub we came through and
    	//    invokes the dynamic resolver via a pointer provided by
    	//    the dynamic linker. This will patch up the .plt slot to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice_test.go

    		t.Run(fmt.Sprintf("%s-%s", tt.gateway, tt.namespace), func(t *testing.T) {
    			if got := resolveGatewayName(tt.gateway, config.Meta{Namespace: tt.namespace}); got != tt.resolved {
    				t.Fatalf("expected %q got %q", tt.resolved, got)
    			}
    		})
    	}
    }
    
    func BenchmarkResolveGatewayName(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		for _, tt := range gatewayNameTests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				MaxPods:                        1,
    				PodCIDR:                        "192.168.1.0/24",
    				PodPidsLimit:                   utilpointer.Int64(1),
    				ResolverConfig:                 utilpointer.String("resolver-config"),
    				RunOnce:                        true,
    				CPUCFSQuota:                    utilpointer.Bool(true),
    				CPUCFSQuotaPeriod:              &metav1.Duration{Duration: 60 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
                            prefix + "[" + key + "]",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool.go

    				if opts.LatestOnly {
    					requestedVersions = 1
    				}
    
    				// However many we ask, versions must exist on ~50%
    				listingQuorum := (askDisks + 1) / 2
    
    				// How to resolve partial results.
    				resolver := metadataResolutionParams{
    					dirQuorum:         listingQuorum,
    					objQuorum:         listingQuorum,
    					bucket:            bucket,
    					requestedVersions: requestedVersions,
    				}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		if dep == "" {
    			continue
    		}
    		if !filepath.IsAbs(dep) {
    			// If the dep can be interpreted as a path relative to the shlib
    			// in which it was found, do that. Otherwise, we will leave it
    			// to be resolved by libdir lookup.
    			abs := filepath.Join(filepath.Dir(libpath), dep)
    			if _, err := os.Stat(abs); err == nil {
    				dep = abs
    			}
    		}
    		deps = append(deps, dep)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier_test.go

    							Mode: v1beta1.PeerAuthentication_MutualTLS_STRICT,
    						},
    					},
    				},
    			},
    			expected: expectedStrict,
    		},
    		{
    			name: "Multiple policies resolved to STRICT",
    			peerPolicies: []*config.Config{
    				{
    					Meta: config.Meta{
    						Name:              "now",
    						Namespace:         "my-ns",
    						CreationTimestamp: now,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
                            prefix + "[" + key + "]",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top