Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 287 for identical (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    However:
    
    - it will perform HTTP HEAD requests on metadata files but _will not re-download them_ if they are identical
    - it will perform HTTP HEAD requests on artifact files but _will not re-download them_ if they are identical
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    		addr2 := v2.UnsafeAddr()
    		if addr1 > addr2 {
    			// Canonicalize order to reduce number of entries in visited.
    			addr1, addr2 = addr2, addr1
    		}
    
    		// Short circuit if references are identical ...
    		if addr1 == addr2 {
    			return true
    		}
    
    		// ... or already seen
    		typ := v1.Type()
    		v := visit{addr1, addr2, typ}
    		if visited[v] {
    			return true
    		}
    
    		// Remember for later.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/README.md

    #### Example Asciidoctor multi-language sample declaration
    
    ```asciidoc
    .Customizing what Gradle logs
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config_test.go

    	channel <- podUpdate
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "new")))
    
    	// should ignore ADDs that are identical
    	expectNoPodUpdate(t, ch)
    
    	// an kubetypes.ADD should be converted to kubetypes.UPDATE
    	pod := CreateValidPod("foo", "new")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top