Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for 4000 (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.dates.min() == timestamp('2000-01-01T00:00:00.000Z')",
    				"self.dates.max() == timestamp('2010-01-01T00:00:00.000Z')",
    				"self.dates.isSorted()",
    				"self.emptyDates.isSorted()",
    				"self.unsortedDates.isSorted() == false",
    				"self.dates.indexOf(timestamp('2000-02-01T00:00:00.000Z')) == 1",
    				"self.dates.lastIndexOf(timestamp('2000-02-01T00:00:00.000Z')) == 2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      const auto padding = GetTflitePadding(inst, op.padding());
      if (padding) {
        pool_params.padding = *padding;
        pool_params.activation = kTfLiteActNone;
        pool_params.computed.padding = TfLitePaddingValues{0, 0, 0, 0};
        return pool_params;
      }
    
      return std::nullopt;
    }
    
    namespace {
    
    using ::mlir::tf_saved_model::kTfSavedModelExportedNamesAttr;
    using ::mlir::tf_saved_model::kTfSavedModelIndexPathAttr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func GetCurrentProcessId() (pid uint32) {
    	r0, _, _ := syscall.Syscall(procGetCurrentProcessId.Addr(), 0, 0, 0, 0)
    	pid = uint32(r0)
    	return
    }
    
    func GetCurrentThreadId() (id uint32) {
    	r0, _, _ := syscall.Syscall(procGetCurrentThreadId.Addr(), 0, 0, 0, 0)
    	id = uint32(r0)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. cmd/server_test.go

    		expectedStrings []string
    	}{
    		{getListObjectsV1URL(s.endPoint, bucketName, "", "1000", ""), []string{"<Key>foo bar 1</Key>", "<Key>foo bar 2</Key>"}},
    		{getListObjectsV1URL(s.endPoint, bucketName, "", "1000", "url"), []string{"<Key>foo+bar+1</Key>", "<Key>foo+bar+2</Key>"}},
    		{
    			getListObjectsV2URL(s.endPoint, bucketName, "", "1000", "", "", ""),
    			[]string{
    				"<Key>foo bar 1</Key>",
    				"<Key>foo bar 2</Key>",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_test.go

    												Number: 80,
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			[]string{"10.0.0.1_8000", "10.0.0.2_8000", "10.0.0.3_8000"},
    		},
    		{
    			"gateway with HTTPS/GRPC servers with bind",
    			&pilot_model.Proxy{},
    			[]config.Config{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    							RingHash: &networking.LoadBalancerSettings_ConsistentHashLB_RingHash{
    								MinimumRingSize: 10,
    							},
    						},
    						MinimumRingSize: 1000,
    					},
    				},
    			},
    			func(c *cluster.Cluster) error {
    				if c.LbPolicy != cluster.Cluster_RING_HASH {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    	addNodes(manager.nodeStore, 0, 5, nil)
    
    	// will be preserved because it's the current hash
    	pod := newPod("node-1-", "node-1", simpleDaemonSetLabel, ds)
    	pod.CreationTimestamp.Time = time.Unix(100, 0)
    	manager.podStore.Add(pod)
    
    	// will be preserved because it's the oldest AND it is ready
    	pod = newPod("node-1-old-", "node-1", simpleDaemonSetLabel, ds)
    	delete(pod.Labels, apps.ControllerRevisionHashLabelKey)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		{"HTTP/1.1", "Host: \x06\r\n", 400},
    		{"HTTP/1.1", "Host: \xff\r\n", 400},
    		{"HTTP/1.1", "Host: {\r\n", 400},
    		{"HTTP/1.1", "Host: }\r\n", 400},
    		{"HTTP/1.1", "Host: first\r\nHost: second\r\n", 400},
    
    		// HTTP/1.0 can lack a host header, but if present
    		// must play by the rules too:
    		{"HTTP/1.0", "", 200},
    		{"HTTP/1.0", "Host: first\r\nHost: second\r\n", 400},
    		{"HTTP/1.0", "Host: \xff\r\n", 400},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    	// expected in case of read timeout
    	w.Header().Set("Connection", "close")
    
    	setEventStreamHeaders(w)
    
    	logCh := make(chan log.Info, 1000)
    	peers, _ := newPeerRestClients(globalEndpoints)
    	encodedCh := make(chan []byte, 1000+len(peers)*1000)
    	err = globalConsoleSys.Subscribe(logCh, ctx.Done(), node, limitLines, logKind, nil)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    			},
    			Port:   httpPort,
    			Count:  1,
    			Scheme: scheme.TCP,
    			Message: `GET / HTTP/1.0
    `,
    			Timeout: time.Second * 5,
    			TCP: echo.TCP{
    				// There is no VIP so we fall back to 0.0.0.0 listener which sniffs
    				ExpectedResponse: &wrappers.StringValue{Value: `HTTP/1.0 200 OK`},
    			},
    		},
    	})
    	t.RunTraffic(TrafficTestCase{
    		name: "http10 to external auto",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top