Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 235 for createId (0.34 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	// Here we manually create them for mocking purpose.
    	svc1Ips := []string{"128.0.0.1"}
    	portNames := []string{"tcp-port"}
    	// Create 1 endpoint that refers to a pod in the same namespace.
    	createEndpoints(t, controller, "svc1", "nsA", portNames, svc1Ips, nil, nil)
    
    	// Creates 100 endpoints that refers to a pod in a different namespace.
    	fakeSvcCounts := 100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// check node health signal posted from kubelet. This value should be lower than
    	// nodeMonitorGracePeriod.
    	// TODO: Change node health monitor to watch based.
    	nodeMonitorPeriod time.Duration
    
    	// When node is just created, e.g. cluster bootstrap or node creation, we give
    	// a longer grace period.
    	nodeStartupGracePeriod time.Duration
    
    	// Controller will not proactively sync node health, but will monitor node
    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/cmd/go/internal/modload/init.go

    				// GO111MODULE is 'auto', and we can't find a module root.
    				// Stay in GOPATH mode.
    				return
    			}
    		} else if search.InDir(modRoot, os.TempDir()) == "." {
    			// If you create /tmp/go.mod for experimenting,
    			// then any tests that create work directories under /tmp
    			// will find it and get modules when they're not expecting them.
    			// It's a bit of a peculiar thing to disallow but quite mysterious
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/syscall/zerrors_darwin_arm64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build arm64 && darwin
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    	AF_CNT                            = 0x15
    	AF_COIP                           = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    				return nil
    			}
    			return fmt.Errorf("no waypoints found")
    		}, retry.Timeout(1*time.Second), retry.BackoffDelay(time.Millisecond*100))
    		if waypointError == nil {
    			t.Fatal("Waypoint for non-existent tag foo created deployment!")
    		}
    	})
    }
    
    func TestRemoveAddWaypoint(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    	}
    	l.symSects[i] = sect.Index
    }
    
    // NewSection creates a new (output) section.
    func (l *Loader) NewSection() *sym.Section {
    	sect := new(sym.Section)
    	idx := len(l.sects)
    	if idx != int(uint16(idx)) {
    		panic("too many sections created")
    	}
    	sect.Index = uint16(idx)
    	l.sects = append(l.sects, sect)
    	return sect
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    feed/fetches on session create/extend.
    
    So given e.g.
    
    ```mlir
      func @test() -> tensor<i32> {
        %0 = tf_executor.graph {
          %output, %control = tf_executor.island {
            ...
            tf_executor.yield %result : tensor<i32>
          }
          tf_executor.fetch %output : tensor<i32>
        }
        return %0
      }
    ```
    
    This pass will create an additional function containing the code in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "operation": {
              "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
              "type": "string"
            },
            "subresource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      Log-Output ("${Name} kubeconfig:`n" +
                  "$(Get-Content -Raw ${Path})")
    }
    
    # Creates the kube-proxy user kubeconfig file at $env:KUBEPROXY_KUBECONFIG.
    #
    # Create-NodePki() must be called first.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    #   KUBE_PROXY_TOKEN
    function Create-KubeproxyKubeconfig {
      Create-Kubeconfig -Name 'kube-proxy' `
        -Path ${env:KUBEPROXY_KUBECONFIG} `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. src/syscall/zerrors_darwin_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build amd64 && darwin
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    	AF_CNT                            = 0x15
    	AF_COIP                           = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
Back to top