Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 245 for identical (0.34 sec)

  1. src/cmd/go/testdata/script/README

    	The command succeeds if the file contents are identical.
    	File1 can be 'stdout' or 'stderr' to compare the stdout or
    	stderr buffer from the most recent command.
    
    cmpenv [-q] file1 file2
    	compare files for differences, with environment expansion
    
    	By convention, file1 is the actual data and file2 is the
    	expected data.
    	The command succeeds if the file contents are identical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			}
    			var mismatched []int
    			for i, expr := range call.Args {
    				if pass.TypesInfo.Types[expr].Type == nil {
    					return true
    				}
    				t := pass.TypesInfo.Types[expr].Type
    				if !types.Identical(t, params.At(i+1).Type()) {
    					mismatched = append(mismatched, i)
    				}
    			}
    			// If just one of the types is mismatched report for that
    			// type only. Otherwise report for the whole call to (*testing.F).Add
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Schema describes the schema for CustomResource used in validation, pruning, and defaulting.
    	// Top-level and per-version schemas are mutually exclusive.
    	// Per-version schemas must not all be set to identical values (top-level validation schema should be used instead)
    	// This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.
    	// +optional
    	Schema *CustomResourceValidation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/fmt.go

    }
    
    // LinkString returns a string description of t, suitable for use in
    // link symbols.
    //
    // The description corresponds to type identity. That is, for any pair
    // of types t1 and t2, Identical(t1, t2) == (t1.LinkString() ==
    // t2.LinkString()) is true. Thus it's safe to use as a map key to
    // implement a type-identity-keyed map.
    func (t *Type) LinkString() string {
    	return tconv(t, 0, fmtTypeID)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// schema describes the schema used for validation and pruning of this version of the custom resource.
    	// Top-level and per-version schemas are mutually exclusive.
    	// Per-version schemas must not all be set to identical values (top-level validation schema should be used instead).
    	// +optional
    	Schema *CustomResourceValidation `json:"schema,omitempty" protobuf:"bytes,4,opt,name=schema"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. pkg/kubelet/userns/userns_manager.go

    		err = fmt.Errorf("invalid user namespace configuration: GID and UID mappings should be identical.")
    		return
    	}
    
    	if userNs.UIDMappings[0] != userNs.GIDMappings[0] {
    		err = fmt.Errorf("invalid user namespace configuration: GID and UID mapping should be identical")
    		return
    	}
    
    	// We don't produce configs without root mapped and some runtimes assume it is mapped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. internal/etag/etag.go

    // in case of SSE-S3. However, storing the ETag of an encrypted
    // object in plaintext may reveal some information about the object.
    // For example, two objects with the same ETag are identical with
    // a very high probability.
    //
    // Therefore, an S3 implementation may encrypt an ETag before storing
    // it. In this case, the stored ETag may not be a well-formed S3 ETag.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

        // We are using a ConcurrentHashMap here because:
        //   - We don't want to use a Set with CLASS_COMPARATOR, since that would treat two classes with the same name originating from different classloaders as identical, allowing only one in the Set.
        //   - ConcurrentHashMap.newKeySet() isn't available on Java 6, yet, and that is where this code needs to run.
        //   - CopyOnWriteArraySet has slower insert performance, since it is not hash based.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/typecheck.go

    		rcvr := f2.Type.Recv().Type
    		if !types.Identical(rcvr, tt) {
    			if rcvr.IsPtr() && types.Identical(rcvr.Elem(), tt) {
    				checklvalue(n.X, "call pointer method on")
    				addr := NodAddr(n.X)
    				addr.SetImplicit(true)
    				n.X = typecheck(addr, ctxType|ctxExpr)
    			} else if tt.IsPtr() && (!rcvr.IsPtr() || rcvr.IsPtr() && rcvr.Elem().NotInHeap()) && types.Identical(tt.Elem(), rcvr) {
    				star := ir.NewStarExpr(base.Pos, n.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultConfigurationMetadata.java

                    filtered.add(configDependency);
                    count++;
                }
            }
            if (count == configDependencies.size()) {
                // Avoid creating a copy if the resulting configuration is identical
                return configDependencies;
            }
            return filtered == null ? ImmutableList.of() : filtered.build();
        }
    
        public Builder mutate() {
            return new Builder();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top