Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for verified$ (0.17 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    	a.hpaSelectors.KeepOnly([]selectors.Key{})
    
    	hpaList := []selectors.Key{}
    	for hpa := range hpas {
    		hpaList = append(hpaList, hpa)
    	}
    	return hpaList
    }
    
    // validateAndParseSelector verifies that:
    // - selector is not empty;
    // - selector format is valid;
    // - all pods by current selector are controlled by only one HPA.
    // Returns an error if the check has failed or the parsed selector if succeeded.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				// Count the number of evictions.
    				zone := nodetopology.GetZoneKey(node)
    				evictionsTotal.WithLabelValues(zone).Inc()
    			}
    
    			return result, 0
    		})
    	}
    }
    
    // monitorNodeHealth verifies node health are constantly updated by kubelet, and if not, post "NodeReady==ConditionUnknown".
    // This function will
    //   - add nodes which are not ready or not reachable for a long period of time to a rate-limited
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    	runServerTestTLS13(t, test)
    }
    
    // TestHandshakeServerSNI involves a client sending an SNI extension of
    // "snitest.com", which happens to match the CN of testSNICertificate. The test
    // verifies that the server correctly selects that certificate.
    func TestHandshakeServerSNI(t *testing.T) {
    	test := &serverTest{
    		name:    "SNI",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                    PatternRewriter &rewriter) const override {
        Value logits = op.getLogits();
        auto loc = op.getLoc();
    
        // Note that the TensorFlow Softmax op verifies that the input rank is
        // greater than or equal to one so the following sequence is valid.
        auto reduce_dim =
            rewriter.create<TF::ConstOp>(loc, GetI64ElementsAttr({-1}, &rewriter));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. src/net/http/fs_test.go

    			if v, ok := res.Header[hdr]; ok {
    				t.Errorf("GET /%d: Header[%q] = %q, want not present", code, hdr, v)
    			}
    		}
    	}
    }
    
    // verifies that sendfile is being used on Linux
    func TestLinuxSendfile(t *testing.T) {
    	setParallel(t)
    	defer afterTest(t)
    	if runtime.GOOS != "linux" {
    		t.Skip("skipping; linux-only test")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    	return nil
    }
    
    func (kl *simpleFakeKubelet) SyncTerminatedPod(ctx context.Context, pod *v1.Pod, podStatus *kubecontainer.PodStatus) error {
    	return nil
    }
    
    // TestFakePodWorkers verifies that the fakePodWorkers behaves the same way as the real podWorkers
    // for their invocation of the syncPodFn.
    func TestFakePodWorkers(t *testing.T) {
    	fakeRecorder := &record.FakeRecorder{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. src/testing/testing.go

    // https://golang.org/x/perf/cmd.
    // In particular, https://golang.org/x/perf/cmd/benchstat performs
    // statistically robust A/B comparisons.
    //
    // # Examples
    //
    // The package also runs and verifies example code. Example functions may
    // include a concluding line comment that begins with "Output:" and is compared with
    // the standard output of the function when the tests are run. (The comparison
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    		mask = uint64(uint32(mask))
    	}
    
    	// Fixup ME to match ISA definition.  The second argument to MASK(..,me)
    	// is inclusive.
    	me = (me - 1) & (nbits - 1)
    	return
    }
    
    // This verifies that the mask is a set of
    // consecutive bits including the least
    // significant bit.
    func isPPC64ValidShiftMask(v int64) bool {
    	if (v != 0) && ((v+1)&v) == 0 {
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    	for _, pkg := range ld.pkgs {
    		if pkg.flags.has(pkgInAll) && !pkg.isTest() {
    			all = append(all, pkg.path)
    		}
    	}
    	sort.Strings(all)
    	return all
    }
    
    // checkMultiplePaths verifies that a given module path is used as itself
    // or as a replacement for another module, but not both at the same time.
    //
    // (See https://golang.org/issue/26607 and https://golang.org/issue/34650.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top