Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 175 for Identical (0.32 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // Per-version schemas must not all be set to identical values (top-level validation schema should be used instead).
      // +optional
      optional CustomResourceValidation schema = 4;
    
      // subresources specify what subresources this version of the defined custom resource have.
      // Top-level and per-version subresources are mutually exclusive.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/value.go

    		return
    	}
    	if v.InCache {
    		v.Block.Func.unCache(v)
    	}
    	v.Op = OpCopy
    	v.resetArgs()
    	v.AddArg(a)
    	v.AuxInt = 0
    	v.Aux = nil
    	v.Type = a.Type
    }
    
    // copyInto makes a new value identical to v and adds it to the end of b.
    // unlike copyIntoWithXPos this does not check for v.Pos being a statement.
    func (v *Value) copyInto(b *Block) *Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            formatSystemProperties(getMutableSystemProperties(), args);
    
            // We have to add these after the system properties so they can override any system properties
            // (identical properties later in the command line override earlier ones)
    
            return ImmutableList.<String>builder()
                .addAll(args)
                .addAll(getAllImmutableJvmArgs())
                .build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/issues_test.go

    		if name.Value == "v" {
    			v = obj
    			break
    		}
    	}
    	if v == nil {
    		t.Fatal("variable v not found")
    	}
    
    	// type of v and T must be pointer-identical
    	if v.Type() != T {
    		t.Fatalf("types of v and T are not pointer-identical: %p != %p", v.Type().(*TypeParam), T)
    	}
    }
    
    func TestIssue44410(t *testing.T) {
    	const src = `
    package p
    
    type A = []int
    type S struct{ A }
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. common/config/.golangci.yml

          - name: call-to-gc
          - name: duplicated-imports
          - name: string-of-int
          - name: defer
            arguments:
              - - "call-chain"
          - name: unconditional-recursion
          - name: identical-branches
            # the following rules can be enabled in the future
            # - name: empty-lines
            # - name: confusing-results
            # - name: empty-block
            # - name: get-return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/stmt.go

    		if val := goVal(v.val); val != nil {
    			// look for duplicate types for a given value
    			// (quadratic algorithm, but these lists tend to be very short)
    			for _, vt := range seen[val] {
    				if Identical(v.typ, vt.typ) {
    					err := check.newError(DuplicateCase)
    					err.addf(&v, "duplicate case %s in expression switch", &v)
    					err.addf(vt.pos, "previous case")
    					err.report()
    					continue L
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// permissible character tests are all omitted. It also prevents the ToASCII
    	// call from salvaging an invalid IDN, when possible. As a result it may be
    	// possible to have two IDNs that appear identical to the user where the
    	// ASCII-only version causes an error downstream whereas the non-ASCII
    	// version does not.
    	// Note that for correct ASCII IDNs ToASCII will only do considerably more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top