Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for ignoreMe (0.11 sec)

  1. src/go/types/api_test.go

    		// (file versions containing release numbers are considered invalid)
    		{"go1.19.0", "", "go1.19.0"},         // no file version specified
    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    		{"go1.20.1", "go1.20", "go1.20.1"},   // file upgrade ignored
    		{"go1.20.1", "go1.21", "go1.21"},     // file upgrade permitted
    		{"go1.20.1", "go1.19", "go1.20.1"},   // file downgrade not permitted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            then:
            def e2 = thrown IllegalStateException
            e2.message == 'The value for this property is final and cannot be changed any further.'
        }
    
        def "ignores add entries after value finalized implicitly"() {
            given:
            property.set(someValue())
            property.implicitFinalizeValue()
    
            when:
            property.putAll(['k3': 'v3'])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    		return nil
    	}
    	res := map[string]string{}
    	for _, e := range hl {
    		k := strings.ToLower(string(e.Name))
    		if _, f := res[k]; f {
    			// "Subsequent entries with an equivalent header name MUST be ignored"
    			continue
    		}
    		res[k] = e.Value
    	}
    	return res
    }
    
    func createMirrorFilter(ctx configContext, filter *k8s.HTTPRequestMirrorFilter, ns string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    		return err
    	}
    
    	for _, fi := range fis {
    		dataDir, err := xlMeta.DeleteVersion(fi)
    		if err != nil {
    			if !fi.Deleted && (err == errFileNotFound || err == errFileVersionNotFound) {
    				// Ignore these since they do not exist
    				continue
    			}
    			return err
    		}
    		if dataDir != "" {
    			versionID := fi.VersionID
    			if versionID == "" {
    				versionID = nullVersionID
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      // If the `tensor` has scale/zero_point, it must have been quantized, then the
      // min/max stats is just for comments, so ignore it.
      if (!tensor.quantization || tfl::IsQuantized(tensor)) return nullptr;
      // If the result isn't float and unquantizable, the min/max is ignored.
      if (!res.getType()
               .cast<mlir::ShapedType>()
               .getElementType()
               .isa<mlir::FloatType>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/mimedb"
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    // list all errors which can be ignored in object operations.
    var objectOpIgnoredErrs = append(baseIgnoredErrs, errDiskAccessDenied, errUnformattedDisk, errDiskOngoingReq)
    
    // Object Operations
    
    func countOnlineDisks(onlineDisks []StorageAPI) (online int) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    		}
    	}
    
    	for _, bucket := range bucketsInConflict.ToSlice() {
    		dnsLogIf(ctx, fmt.Errorf("Unable to add bucket DNS entry for bucket %s, an entry exists for the same bucket by a different tenant. This local bucket will be ignored. Bucket names are globally unique in federated deployments. Use path style requests on following addresses '%v' to access this bucket", bucket, globalDomainIPs.ToSlice()))
    	}
    
    	var wg sync.WaitGroup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			args: config.NodeResourcesFitArgs{
    				IgnoredResources: []string{"example.com/bbb"},
    			},
    			name:                      "skip checking ignored extended resource",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    		{
    			pod: newResourceOverheadPod(
    				newResourcePod(framework.Resource{MilliCPU: 1, Memory: 1}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    					KillPodOptions: &KillPodOptions{PodTerminationGracePeriodSecondsOverride: intp(30)},
    				},
    			}),
    			expectKnownTerminated: true,
    		},
    		{
    			name: "a new pod is recorded and started and running pod is ignored",
    			update: UpdatePodOptions{
    				UpdateType: kubetypes.SyncPodCreate,
    				Pod:        newNamedPod("1", "ns", "running-pod", false),
    				RunningPod: &kubecontainer.Pod{ID: "1", Name: "orphaned-pod", Namespace: "ns"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

       * all elements that are contained by {@code set1} and not contained by {@code set2}. {@code set2}
       * may also contain elements not present in {@code set1}; these are simply ignored. The iteration
       * order of the returned set matches that of {@code set1}.
       *
       * <p>Results are undefined if {@code set1} and {@code set2} are sets based on different
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top