Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 303 for deduplicated (0.19 sec)

  1. pkg/kubelet/container/helpers_test.go

    					port("", v1.ProtocolTCP, 80, 8080, "127.0.0.1"),
    					port("", v1.ProtocolTCP, 443, 4343, "192.168.0.1"),
    					port("foo", v1.ProtocolUDP, 555, 5555, ""),
    					// Duplicated, should be ignored.
    					port("foo", v1.ProtocolUDP, 888, 8888, ""),
    					// Duplicated with different address family, shouldn't be ignored
    					port("", v1.ProtocolTCP, 80, 8080, "::"),
    					// No address family specified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    			},
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeNotSupported,
    					Field: "defaultConstraints[0].whenUnsatisfiable",
    				},
    			},
    		},
    		"duplicated constraints": {
    			args: &config.PodTopologySpreadArgs{
    				DefaultConstraints: []v1.TopologySpreadConstraint{
    					{
    						MaxSkew:           1,
    						TopologyKey:       "node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableList.java

       * order. The sorting algorithm used is stable, so elements that compare as equal will stay in the
       * order in which they appear in the input.
       *
       * <p>If your data has no duplicates, or you wish to deduplicate elements, use {@code
       * ImmutableSortedSet.copyOf(elements)}; if you want a {@code List} you can use its {@code
       * asList()} view.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedFileOrderingIntegrationTest.groovy

            succeeds 'show'
    
            then:
            // local artifacts are not de-duplicated. This is documenting existing behaviour rather than desired behaviour
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/internal/bisect/bisect.go

    	}
    	return h
    }
    
    func fnvUint32(h uint64, x uint32) uint64 {
    	for i := 0; i < 4; i++ {
    		h ^= uint64(x & 0xFF)
    		x >>= 8
    		h *= prime64
    	}
    	return h
    }
    
    // A dedup is a deduplicator for call stacks, so that we only print
    // a report for new call stacks, not for call stacks we've already
    // reported.
    //
    // It has two modes: an approximate but lock-free mode that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apps__v1_openapi.json

              },
              "signerName": {
                "description": "Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name.  The contents of all selected ClusterTrustBundles will be unified and deduplicated.",
                "type": "string"
              }
            },
            "required": [
              "path"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.ConfigMapEnvSource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    			pass.Reportf(field.Pos(), "struct field %s has %s tag but is not exported", field.Name(), enc)
    			return
    		}
    	}
    }
    
    // checkTagDuplicates checks a single struct field tag to see if any tags are
    // duplicated. nearest is the field that's closest to the field being checked,
    // while still being part of the top-level struct type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    						schedulingCtx.Status.ResourceClaims[0].UnsuitableNodes,
    						fmt.Sprintf("worker%d", i),
    					)
    				}
    				return schedulingCtx
    			},
    		},
    		"invalid-duplicated-claim-status": {
    			wantFailures:  field.ErrorList{field.Duplicate(field.NewPath("status", "claims").Index(1), "my-claim")},
    			oldScheduling: validScheduling,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. pkg/config/security/security.go

    	for _, s := range suites {
    		if IsValidCipherSuite(s) {
    			if !validCiphers.InsertContains(s) {
    				ret = append(ret, s)
    			} else if log.DebugEnabled() {
    				log.Debugf("ignoring duplicated cipherSuite: %q", s)
    			}
    		} else if log.DebugEnabled() {
    			log.Debugf("ignoring unsupported cipherSuite: %q", s)
    		}
    	}
    	return ret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    #include "tensorflow/compiler/mlir/lite/schema/mutable/schema_generated.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/statusor.h"
    
    namespace mlir {
    
    // duplicated from
    // https://github.com/openxla/stablehlo/blob/e5ad51715a11721c78b6748ab5de7945df24b1b8/stablehlo/transforms/StablehloLegalizeToVhlo.cpp#L756
    // so we can create correct vhlo types
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top