Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 238 for _ignored (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    }
                    if (str != null) {
                        parallelism = Integer.parseInt(str);
                    }
                } catch (Exception e) {
                    // ignore
                }
                return Math.max(1, Math.min(parallelism, Runtime.getRuntime().availableProcessors()));
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    	req.URL.Path = ""
    	ServeFile(rec, req, "testdata")
    	res := rec.Result()
    	if res.StatusCode != 301 {
    		t.Errorf("code = %v; want 301", res.Status)
    	}
    }
    
    // Tests that ranges are ignored with serving empty content. (Issue 54794)
    func TestServeContentWithEmptyContentIgnoreRanges(t *testing.T) {
    	for _, r := range []string{
    		"bytes=0-128",
    		"bytes=1-",
    	} {
    		rec := httptest.NewRecorder()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. src/time/format.go

    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    // To define your own format, write down what the reference time would look like
    // formatted your way; see the values of constants like [ANSIC], [StampMicro] or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator_test.go

    			},
    		},
    	}
    	tc.runTest(t)
    }
    
    func TestReplicaCalcScaleUpCMObjectIgnoresUnreadyPods(t *testing.T) {
    	tc := replicaCalcTestCase{
    		currentReplicas:  3,
    		expectedReplicas: 5, // If we did not ignore unready pods, we'd expect 15 replicas.
    		podReadiness:     []v1.ConditionStatus{v1.ConditionFalse, v1.ConditionTrue, v1.ConditionFalse},
    		metric: &metricInfo{
    			name:          "qps",
    			levels:        []int64{50000},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	}
    }
    
    func (nc *Controller) doNoScheduleTaintingPass(ctx context.Context, nodeName string) error {
    	node, err := nc.nodeLister.Get(nodeName)
    	if err != nil {
    		// If node not found, just ignore it.
    		if apierrors.IsNotFound(err) {
    			return nil
    		}
    		return err
    	}
    
    	// Map node's condition to Taints.
    	var taints []v1.Taint
    	for _, condition := range node.Status.Conditions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	runSkips       = flag.Bool("run_skips", false, "run skipped tests (ignore skip and build tags)")
    	linkshared     = flag.Bool("linkshared", false, "")
    	updateErrors   = flag.Bool("update_errors", false, "update error messages in test file based on compiler output")
    	runoutputLimit = flag.Int("l", defaultRunOutputLimit(), "number of parallel runoutput tests to run")
    	force          = flag.Bool("f", false, "ignore expected-failure test lists")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// The previous call (ListContainers) never fails due to a pod container not existing.
    		// Therefore, this method should not either, but instead act as if the previous call failed,
    		// which means the error should be ignored.
    		if crierror.IsNotFound(err) {
    			continue
    		}
    		if err != nil {
    			// Merely log this here; GetPodStatus will actually report the error out.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Delete(
    	ctx context.Context, key string, out runtime.Object, preconditions *storage.Preconditions,
    	validateDeletion storage.ValidateObjectFunc, _ runtime.Object) error {
    	// Ignore the suggestion and try to pass down the current version of the object
    	// read from cache.
    	if elem, exists, err := c.watchCache.GetByKey(key); err != nil {
    		klog.Errorf("GetByKey returned error: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

        private boolean hasRelevantFields(ClassDetails type) {
            List<Field> instanceFields = type.getInstanceFields();
            if (instanceFields.isEmpty()) {
                return false;
            }
            // Ignore irrelevant synthetic metaClass field injected by the Groovy compiler
            if (instanceFields.size() == 1 && isSyntheticMetaClassField(instanceFields.get(0))) {
                return false;
            }
            return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    // *Status and its code is set to non-success if any of the plugins returns
    // anything but Success/Skip.
    // When it returns Skip status, returned PreFilterResult and other fields in status are just ignored,
    // and coupled Filter plugin/PreFilterExtensions() will be skipped in this scheduling cycle.
    // If a non-success status is returned, then the scheduling cycle is aborted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top