Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 223 for Identical (0.14 sec)

  1. internal/bucket/replication/replication_test.go

    			destBucket:            "destinationbucket",
    			sameTarget:            false,
    			expectedParsingErr:    nil,
    			expectedValidationErr: errDestinationArnMissing,
    		},
    		// 5 replication destination in different rules not identical
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/typed_xds_cache.go

    // config sources change, Clear/ClearAll should be called. At this point, we may get multiple writes
    // because multiple writers may get cache misses concurrently, but they ought to generate identical
    // configuration. This also checks that our XDS config generation is deterministic, which is a very
    // important property.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         *
         * <ul>
         *   <li>If the test output directory is modular, then:
         *     <ul>
         *       <li>If a test module name is identical to a main module name,
         *           place the test directory in a {@code --patch-module} option.</li>
         *       <li>Otherwise, place the test directory on the module-path. However, this case
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/proxyconfig.go

    			if rootCA1 == rootCA2 {
    				report := fmt.Sprintf("Both [%s.%s] and [%s.%s] have the identical ROOTCA, theoretically the connectivity between them is available",
    					podName1, podNamespace1, podName2, podNamespace2)
    				c.Println(report)
    				returnErr = nil
    			} else {
    				report := fmt.Sprintf("Both [%s.%s] and [%s.%s] have the non identical ROOTCA, theoretically the connectivity between them is unavailable",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/walk.go

    		return n
    	}
    
    	lt := n.X.Type()
    	rt := n.Y.Type()
    	if lt == nil || rt == nil {
    		return n
    	}
    
    	if ir.IsBlank(n.X) {
    		n.Y = typecheck.DefaultLit(n.Y, nil)
    		return n
    	}
    
    	if !types.Identical(lt, rt) {
    		n.Y = typecheck.AssignConv(n.Y, lt, "assignment")
    		n.Y = walkExpr(n.Y, init)
    	}
    	types.CalcSize(n.Y.Type())
    
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typestring.go

    		}
    
    	case *Interface:
    		if w.ctxt == nil {
    			if t == universeAnyAlias.Type().Underlying() {
    				// When not hashing, we can try to improve type strings by writing "any"
    				// for a type that is pointer-identical to universeAny.
    				// TODO(rfindley): this logic should not be necessary with
    				// gotypesalias=1. Remove once that is always the case.
    				w.string("any")
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    					matches[typ] = append(matches[typ], ident.Name)
    				}
    			}
    		}
    		return true
    	})
    	return matches
    }
    
    func equivalentTypes(want, got types.Type) bool {
    	if types.Identical(want, got) {
    		return true
    	}
    	// Code segment to help check for untyped equality from (golang/go#32146).
    	if rhs, ok := want.(*types.Basic); ok && rhs.Info()&types.IsUntyped > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            assertDependencyMetaDataReadTimeout(moduleA)
            failure.assertHasErrorOutput("There are 2 more failures with identical causes.")
            outputDoesNotContain("Could not resolve ${mavenModuleCoordinates(moduleD)}")
            outputDoesNotContain("Could not resolve ${mavenModuleCoordinates(moduleE)}")
            !downloadedLibsDir.isDirectory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/go/types/typestring.go

    		}
    
    	case *Interface:
    		if w.ctxt == nil {
    			if t == universeAnyAlias.Type().Underlying() {
    				// When not hashing, we can try to improve type strings by writing "any"
    				// for a type that is pointer-identical to universeAny.
    				// TODO(rfindley): this logic should not be necessary with
    				// gotypesalias=1. Remove once that is always the case.
    				w.string("any")
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/const.go

    		case *ir.LogicalExpr:
    			n.X = convlit(n.X, ot)
    			n.Y = convlit(n.Y, ot)
    			l, r = n.X, n.Y
    		}
    
    		if l.Type() == nil || r.Type() == nil {
    			n.SetType(nil)
    			return n
    		}
    		if !types.Identical(l.Type(), r.Type()) {
    			base.Errorf("invalid operation: %v (mismatched types %v and %v)", n, l.Type(), r.Type())
    			n.SetType(nil)
    			return n
    		}
    
    		n.SetType(t)
    		return n
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top