Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for reregistering (0.29 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	DryRun bool
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	NodeRegistration NodeRegistrationOptions
    
    	// LocalAPIEndpoint represents the endpoint of the API server instance that's deployed on this control plane node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	// +optional
    	DryRun bool `json:"dryRun,omitempty"`
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	// +optional
    	NodeRegistration NodeRegistrationOptions `json:"nodeRegistration,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/BUILD

            "@local_tsl//tsl/protobuf:protos_all_cc",
            "@local_xla//xla:xla_data_proto_cc",
            "@local_xla//xla/mlir_hlo",
            "@stablehlo//:chlo_ops",
        ],
        # Alwayslink is required for registering the MLIR passes.
        # TODO(b/255530126): Split the pass registration from the definitions to avoid binary size bloat.
        alwayslink = True,
    )
    
    cc_library(
        name = "quantize_preprocess",
        srcs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. internal/grid/handlers.go

    // This must be done prior to registering the handler.
    func (h *StreamTypeHandler[Payload, Req, Resp]) WithOutCapacity(out int) *StreamTypeHandler[Payload, Req, Resp] {
    	h.OutCapacity = out
    	return h
    }
    
    // WithInCapacity adjusts the input capacity from the handler perspective.
    // This must be done prior to registering the handler.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                        from.attribute(matter, "liquid")
                        to.attribute(matter, "gas")
                    }
                }
    
                val forceResolution by tasks.registering {
                    inputs.files(configurations.getByName("resolveMe").incoming.artifactView {
                        attributes.attribute(color, "red")
                    }.artifacts.artifactFiles)
    
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. pilot/pkg/features/pilot.go

    		"If true, pilot will add Istio ALPN filters, required for proper protocol sniffing.",
    	).Get()
    
    	WorkloadEntryAutoRegistration = env.Register("PILOT_ENABLE_WORKLOAD_ENTRY_AUTOREGISTRATION", true,
    		"Enables auto-registering WorkloadEntries based on associated WorkloadGroups upon XDS connection by the workload.").Get()
    
    	WorkloadEntryCleanupGracePeriod = env.Register("PILOT_WORKLOAD_ENTRY_GRACE_PERIOD", 10*time.Second,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/encoding/gob/type.go

    		panic(fmt.Sprintf("gob: registering duplicate types for %q: %s != %s", name, t, ut.user))
    	}
    
    	// but the flattened type in the type table, since that's what decode needs.
    	if n, dup := concreteTypeToName.LoadOrStore(ut.base, name); dup && n != name {
    		nameToConcreteType.Delete(name)
    		panic(fmt.Sprintf("gob: registering duplicate names for %s: %q != %q", ut.user, n, name))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/plugin/noderesources.go

    			if !ok {
    				return
    			}
    			logger.V(5).Info("ResourceSlice delete", "slice", klog.KObj(slice))
    			c.queue.Add(slice.DriverName)
    		},
    	})
    	if err != nil {
    		logger.Error(err, "Registering event handler on the ResourceSlice informer failed, disabling resource monitoring")
    		return
    	}
    
    	// Start informer and wait for our cache to be populated.
    	c.wg.Add(1)
    	go func() {
    		defer c.wg.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                        return true; // No further processing of this annotation type
                    }
                }
            """
            // META-INF/services file for registering the annotation processor
            file("processor/src/main/resources/META-INF/services/javax.annotation.processing.Processor") << "com.example.DummyProcessor"
    
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads.go

    	if err := s.authorize(con, identities); err != nil {
    		return err
    	}
    
    	// Register the connection. this allows pushes to be triggered for the proxy. Note: the timing of
    	// this and initializeProxy important. While registering for pushes *after* initialization is complete seems like
    	// a better choice, it introduces a race condition; If we complete initialization of a new push
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top