Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for 8601 (2.1 sec)

  1. src/encoding/binary/example_test.go

    	}
    	// Output:
    	// 01
    	// 02
    	// 7f
    	// 8001
    	// ff01
    	// 8002
    }
    
    func ExamplePutVarint() {
    	buf := make([]byte, binary.MaxVarintLen64)
    
    	for _, x := range []int64{-65, -64, -2, -1, 0, 1, 2, 63, 64} {
    		n := binary.PutVarint(buf, x)
    		fmt.Printf("%x\n", buf[:n])
    	}
    	// Output:
    	// 8101
    	// 7f
    	// 03
    	// 01
    	// 00
    	// 02
    	// 04
    	// 7e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-svcselector.yaml

    # Gateways for 8001 and 8002 correct matching
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin8001-gateway
    spec:
      selector:
        myapp: ingressgateway-8001
      servers:
      - port:
          number: 8001
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin8002-gateway
    spec:
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. samples/health-check/liveness-http-same-port.yaml

            version: v1
        spec:
          containers:
          - name: liveness-http
            image: docker.io/istio/health:example
            ports:
            - containerPort: 8001
            livenessProbe:
              httpGet:
                path: /foo
                port: 8001
              initialDelaySeconds: 5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 07 20:03:32 UTC 2020
    - 734 bytes
    - Viewed (0)
  4. samples/health-check/server.go

    	go func() {
    		http.ListenAndServe(":8001", server8001)
    	}()
    
    	go func() {
    		http.ListenAndServe(":8002", server8002)
    	}()
    
    	<-finish
    }
    
    func foo8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: foo "))
    }
    
    func bar8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: bar "))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r25/ToolingApiEclipseModelCrossVersionSpec.groovy

            then:
            aProject.classpath.find { it.file.name == "someArtifact-17.0.jar" }
            bProject.classpath.find { it.file.name == "someArtifact-16.0.1.jar" }
            cProject.classpath.find { it.file.name == "someArtifact-16.0.1.jar" }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/testdata/image_pull_duration_metric

    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="300"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="360"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="480"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="600"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="900"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    	tests := []struct {
    		pod1     *v1.Pod
    		pod2     *v1.Pod
    		expected []*v1.ContainerPort
    	}{
    		{
    			pod1: st.MakePod().ContainerPort([]v1.ContainerPort{
    				{
    					ContainerPort: 8001,
    					HostPort:      8001,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8002,
    					HostPort:      8002,
    					Protocol:      v1.ProtocolTCP,
    				}}).ContainerPort([]v1.ContainerPort{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. tests/testdata/config/se-example.yaml

    # set to STATIC to use unix address endpoints.
    
    # Modified to use port 8001
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: unix-domain-socket-example
      namespace: seexamples
    spec:
      hosts:
      - "example.unix.local"
      location: MESH_EXTERNAL
      ports:
      - number: 8001
        name: http
        protocol: HTTP
      resolution: STATIC
      endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 27 15:20:03 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/organizinggradleprojects/SamplesOrganizingGradleProjectsIntegrationTest.groovy

            when:
            succeeds('createCustomGradleDistribution')
    
            then:
            def customDistribution = sample.dir.file('groovy/build/distributions/mycompany-gradle-4.6-0.1-bin.zip')
            customDistribution.assertExists()
            new ZipTestFixture(customDistribution).assertContainsFile("gradle-4.6/init.d/repositories.gradle")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. tests/testdata/config/external_services.yaml

    ---
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-svc-dst
      namespace: testns
    spec:
       hosts:
       - dst.extsvc.com
    #   - *.dst2.extsvc.com
       ports:
       - number: 8001
         name: extsvc-http
         protocol: HTTP
       resolution: NONE
    
    ---
    
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-svc-ep
      namespace: testns
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.9K bytes
    - Viewed (0)
Back to top