Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 91 for 4000 (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %con21 = "tf.Const"() { value = dense<[0.0, 2.0]> : tensor<2xf32> } : () -> tensor<2xf32>
      %con22 = "tf.Const"() { value = dense<[0.0, 0.0]> : tensor<2xf32> } : () -> tensor<2xf32>
      %con31 = "tf.Const"() { value = dense<[0.0, 0.0]> : tensor<2xf32> } : () -> tensor<2xf32>
      %con32 = "tf.Const"() { value = dense<[0.0, 0.0]> : tensor<2xf32> } : () -> tensor<2xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    // a         r1,  0,  i2,  0,  0, m3,  0
    // b         r1, r2, ri4,  0,  0, m3,  0
    // c         r1, m3, ri4,  0,  0,  0, i2
    // d         r1, r3,  i2,  0,  0,  0,  0
    // e         r1, r3, ri2,  0,  0,  0,  0
    // f         r1, r2,   0, i3, i4,  0, i5
    // g         r1, m3,  i2,  0,  0,  0,  0
    func zRIE(f form, op, r1, r2_m3_r3, i2_ri4_ri2, i3, i4, m3, i2_i5 uint32, asm *[]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    lass package org.codehaus.plexus.util.xml.pull; public synchronized class MXParser implements XmlPullParser { protected static final String XML_URI = http://www.w3.org/XML/1998/namespace; protected static final String XMLNS_URI = http://www.w3.org/2000/xmlns/; protected static final String FEATURE_XML_ROUNDTRIP = http://xmlpull.org/v1/doc/features.html#xml-roundtrip; protected static final String FEATURE_NAMES_INTERNED = http://xmlpull.org/v1/doc/features.html#names-interned; protected static final...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    					if sErr != nil {
    						errs = AppendValidation(errs, sErr)
    					}
    					if sHost != "" && sHost != "127.0.0.1" && sHost != "0.0.0.0" && sHost != "::1" && sHost != "::" {
    						errMsg := "sidecar: defaultEndpoint must be of form 127.0.0.1:<port>,0.0.0.0:<port>,[::1]:port,[::]:port,unix://filepath or unset"
    						errs = AppendValidation(errs, fmt.Errorf(errMsg))
    					}
    					port, err := strconv.Atoi(sPort)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers_test.go

    		pod3: newPodInodeStats(pod3, resource.MustParse("150000"), resource.MustParse("150000"), resource.MustParse("50000")), // 350000
    		pod4: newPodInodeStats(pod4, resource.MustParse("10000"), resource.MustParse("40000"), resource.MustParse("100000")),  // 150000
    	}
    	statsFn := func(pod *v1.Pod) (statsapi.PodStats, bool) {
    		result, found := stats[pod]
    		return result, found
    	}
    	pods := []*v1.Pod{pod4, pod3, pod2, pod1}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    		sched.gcwaiting.Store(true)
    		// this should stop running goroutines
    		if !preemptall() {
    			break // no running goroutines
    		}
    		usleep(1000)
    	}
    	// to be sure
    	usleep(1000)
    	preemptall()
    	usleep(1000)
    }
    
    // All reads and writes of g's status go through readgstatus, casgstatus
    // castogscanstatus, casfrom_Gscanstatus.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top