Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 133 for INITIALIZING (0.15 sec)

  1. cmd/kubeadm/app/cmd/phases/join/preflight.go

    			return errors.New(msg.String())
    		}
    
    		// run kubeadm init preflight checks for checking all the prerequisites
    		fmt.Println("[preflight] Running pre-flight checks before initializing the new control plane instance")
    
    		if err := preflight.RunInitNodeChecks(utilsexec.New(), initCfg, j.IgnorePreflightErrors(), true, hasCertificateKey); err != nil {
    			return err
    		}
    
    		if j.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. pkg/util/filesystem/watcher.go

    // eventHandler() must be non-nil, and pollInterval must be greater than 0.
    // eventHandler() is invoked whenever a change event is observed or pollInterval elapses.
    // errorHandler() is invoked (if non-nil) whenever an error occurs initializing or watching the specified path.
    //
    // If path is a directory, only the directory and immediate children are watched.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    //
    // If Mode is "off", no data should be written to the telemetry directory, and
    // the other paths values referenced by Dir should be considered undefined.
    // This accounts for the case where initializing [Default] fails, and therefore
    // local telemetry paths are unknown.
    func (d Dir) Mode() (string, time.Time) {
    	if d.modefile == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Hashing.java

       * href="https://datatracker.ietf.org/doc/html/rfc6151#section-2.3">over {@code hmacMd5}</a>.
       *
       * @param key the secret key
       * @throws IllegalArgumentException if the given key is inappropriate for initializing this MAC
       * @since 20.0
       */
      public static HashFunction hmacMd5(Key key) {
        return new MacHashFunction("HmacMD5", key, hmacToString("hmacMd5", key));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. cmd/auth-handler_test.go

    		// creating an input HTTP request.
    		// Only the query parameters are relevant for this particular test.
    		inputReq, err := http.NewRequest(http.MethodGet, "http://example.com", nil)
    		if err != nil {
    			t.Fatalf("Error initializing input HTTP request: %v", err)
    		}
    		q := inputReq.URL.Query()
    		q.Add(testCase.inputQueryKey, testCase.inputQueryValue)
    		inputReq.URL.RawQuery = q.Encode()
    		inputReq.ParseForm()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Hashing.java

       * href="https://datatracker.ietf.org/doc/html/rfc6151#section-2.3">over {@code hmacMd5}</a>.
       *
       * @param key the secret key
       * @throws IllegalArgumentException if the given key is inappropriate for initializing this MAC
       * @since 20.0
       */
      public static HashFunction hmacMd5(Key key) {
        return new MacHashFunction("HmacMD5", key, hmacToString("hmacMd5", key));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java

            session.setArtifactDescriptorPolicy(getArtifactDescriptorPolicy());
            session.setScopeManager(getScopeManager());
        }
    
        /**
         * Creates a new Maven-like repository system session by initializing the session with values typical for
         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSessionBuilderSupplier.java

            session.setArtifactDescriptorPolicy(getArtifactDescriptorPolicy());
            session.setScopeManager(getScopeManager());
        }
    
        /**
         * Creates a new Maven-like repository system session by initializing the session with values typical for
         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller.go

    	err := wait.PollUntilContextCancel(ctx, 100*time.Millisecond, true, func(ctx context.Context) (bool, error) {
    		syncErr := c.sync()
    		return syncErr == nil, nil
    	})
    	if err != nil {
    		klog.Infof("error initializing the default ServiceCIDR: %v", err)
    
    	}
    
    	// run the sync loop in the background with the defined interval
    	go wait.Until(func() {
    		err := c.sync()
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. hack/update-vendor.sh

          rm -f Godeps/Godeps.json # remove before initializing, staging Godeps are not authoritative
          go mod init "k8s.io/${repo}"
          go mod edit -fmt
        fi
      )
    done
    
    if [[ ! -f go.mod ]]; then
      kube::log::status "go.mod: initialize k8s.io/kubernetes" >&11
      go mod init "k8s.io/kubernetes"
      rm -f Godeps/Godeps.json # remove after initializing
    fi
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top