Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 211 for _ignored (0.23 sec)

  1. cmd/test-utils_test.go

    const iso8601TimeFormat = "2006-01-02T15:04:05.000Z"
    
    // Excerpts from @lsegal - https://github.com/aws/aws-sdk-js/issues/659#issuecomment-120477258
    //
    //	User-Agent:
    //
    //	    This is ignored from signing because signing this causes problems with generating pre-signed URLs
    //	    (that are executed by other agents) or when customers pass requests through proxies, which may
    //	    modify the user-agent.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    Each listed package causes the execution of a separate test binary.
    Files whose names begin with "_" (including "_test.go") or "." are ignored.
    
    Test files that declare a package with the suffix "_test" will be compiled as a
    separate package, and then linked and run with the main test binary.
    
    The go tool will ignore a directory named "testdata", making it available
    to hold ancillary data needed by the tests.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    		t.Errorf("Expected actions:\n%v\n but got:\n%v\nDifference:\n%v", expectedActionSet, actionSet, expectedActionSet.Difference(actionSet))
    	}
    
    	// verify that the "old" object was ignored for calculating the new usage
    	decimatedActions := removeListWatch(kubeClient.Actions())
    	lastActionIndex := len(decimatedActions) - 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    		if isLocalTrafficDSR && !ep.IsLocal() {
    			// KEP-1669: Ignore remote endpoints when the ExternalTrafficPolicy is Local (DSR Mode)
    			continue
    		}
    		// If Readiness Probe fails and pod is not under delete, then
    		// the state of the endpoint will be - Ready:False, Serving:False, Terminating:False
    		if !ep.IsReady() && !ep.IsTerminating() {
    			// Ready:false, Terminating:False, ignore
    			continue
    		}
    		if !ep.IsTerminating() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // grace period seconds (graceful deletion) and updating the list of
    // finalizers (finalization); it returns:
    //
    //  1. an error
    //  2. a boolean indicating that the object was not found, but it should be
    //     ignored
    //  3. a boolean indicating that the object's grace period is exhausted and it
    //     should be deleted immediately
    //  4. a new output object with the state that was updated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    						res = append(res, disk)
    					}
    				}
    			}
    		}
    	}
    	return res
    }
    
    // GetRawData will return all files with a given raw path to the callback.
    // Errors are ignored, only errors from the callback are returned.
    // For now only direct file paths are supported.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top