Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 97 for growing (0.13 sec)

  1. cmd/kubeadm/app/cmd/phases/init/showjoincommand.go

    		{{end}}{{end}}Then you can join any number of worker nodes by running the following on each as root:
    
    		{{.joinWorkerCommand}}
    		`)))
    )
    
    // NewShowJoinCommandPhase creates a kubeadm workflow phase that implements showing the join command.
    func NewShowJoinCommandPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:         "show-join-command",
    		Short:        "Show the join command for control-plane and worker node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

        /**
         * A constant for using <a href="https://developer.ibm.com/languages/java/semeru-runtimes/">IBM Semeru Runtimes</a> as the JVM vendor.
         *
         * @since 7.4
         * @deprecated We are grouping all IBM runtimes under the '{@code IBM}' vendor, won't keep a separate constant for Semeru ones. Just use '{@code IBM}' instead.
         */
        @Deprecated
        public static final JvmVendorSpec IBM_SEMERU = IBM;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/AbstractIteratorTest.java

          fail();
        } catch (IllegalStateException expected) {
        }
      }
    
      // Technically we should test other reentrant scenarios (4 combinations of
      // hasNext/next), but we'll cop out for now, knowing that
      // next() both start by invoking hasNext() anyway.
    
      /** Throws an undeclared checked exception. */
      private static void sneakyThrow(Throwable t) {
        class SneakyThrower<T extends Throwable> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 04 09:41:29 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    The highest version that matches all conditions is selected.
    If no such version is found, Gradle fails with an error showing the conflicting declarations.
    If this happens you can adjust your dependencies or dependency constraints declarations, or make other adjustments to the transitive dependencies if needed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/injection.yaml

      namespace: default
      annotations:
        sidecar.istio.io/inject: "false"
    spec:
      containers:
      - image: gcr.io/google-samples/microservices-demo/adservice:v0.1.1
        name: server
    ---
    # Control plane pod proving the existence of istio.io/rev 'canary'
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/mime.map

    audio/x-mpeg                   mp2              # MP2 Sound File
    chemical/x-pdb                 pdb              # PDB Chemistry Model File
    chemical/x-xyz                 xyz              # XYZ Chemistry Model File
    drawing/x-dwf                  dwf              # AutoCAD
    image/gif                      gif              # GIF image file
    image/ief                      ief              # Image Exchange
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  7. src/reflect/example_test.go

    	// hi
    	// 42
    	// unhandled kind func
    }
    
    func ExampleMakeFunc() {
    	// swap is the implementation passed to MakeFunc.
    	// It must work in terms of reflect.Values so that it is possible
    	// to write code without knowing beforehand what the types
    	// will be.
    	swap := func(in []reflect.Value) []reflect.Value {
    		return []reflect.Value{in[1], in[0]}
    	}
    
    	// makeSwap expects fptr to be a pointer to a nil function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:04:36 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/dataclasses.md

    # Using Dataclasses
    
    FastAPI is built on top of **Pydantic**, and I have been showing you how to use Pydantic models to declare requests and responses.
    
    But FastAPI also supports using <a href="https://docs.python.org/3/library/dataclasses.html" class="external-link" target="_blank">`dataclasses`</a> the same way:
    
    ```Python hl_lines="1  7-12  19-20"
    {!../../../docs_src/dataclasses/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/doc/testdata/pkg.go

    const unexportedTypedConstant ExportedType = 1 // In a separate section to test -u.
    
    // Comment about exported interface.
    type ExportedInterface interface {
    	// Comment before exported method.
    	//
    	//	// Code block showing how to use ExportedMethod
    	//	func DoSomething() error {
    	//		ExportedMethod()
    	//		return nil
    	//	}
    	//
    	ExportedMethod()   // Comment on line with exported method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. pkg/client/tests/listwatch_test.go

    )
    
    func parseSelectorOrDie(s string) fields.Selector {
    	selector, err := fields.ParseSelector(s)
    	if err != nil {
    		panic(err)
    	}
    	return selector
    }
    
    // buildQueryValues is a convenience function for knowing if a namespace should be in a query param or not
    func buildQueryValues(query url.Values) url.Values {
    	v := url.Values{}
    	for key, values := range query {
    		for _, value := range values {
    			v.Add(key, value)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 17:08:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top