Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for init_func1 (0.12 sec)

  1. cmd/kube-controller-manager/app/discovery.go

    )
    
    func newEndpointSliceControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.EndpointSliceController,
    		aliases:  []string{"endpointslice"},
    		initFunc: startEndpointSliceController,
    	}
    }
    
    func startEndpointSliceController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/batch.go

    	"k8s.io/kubernetes/pkg/controller/job"
    )
    
    func newJobControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.JobController,
    		aliases:  []string{"job"},
    		initFunc: startJobController,
    	}
    }
    
    func startJobController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    	jobController, err := job.NewController(
    		ctx,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/ld.go

    	initfunc := ctxt.loader.MakeSymbolUpdater(ifs)
    	ctxt.loader.SetAttrReachable(ifs, true)
    	ctxt.loader.SetAttrLocal(ifs, true)
    	initfunc.SetType(sym.STEXT)
    
    	// Add the init func and/or addmoduledata to Textp.
    	if ctxt.BuildMode == BuildModePlugin {
    		ctxt.Textp = append(ctxt.Textp, amd)
    	}
    	ctxt.Textp = append(ctxt.Textp, initfunc.Sym())
    
    	// Create an init array entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/rbac.go

    )
    
    func newClusterRoleAggregrationControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.ClusterRoleAggregationController,
    		aliases:  []string{"clusterrole-aggregation"},
    		initFunc: startClusterRoleAggregationController,
    	}
    }
    
    func startClusterRoleAggregationController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/certificates.go

    )
    
    func newCertificateSigningRequestSigningControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.CertificateSigningRequestSigningController,
    		aliases:  []string{"csrsigning"},
    		initFunc: startCertificateSigningRequestSigningController,
    	}
    }
    
    func startCertificateSigningRequestSigningController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_hashtable_ops_as_args.cc

              llvm::StringRef(tensorflow::kImportModelDefaultGraphFuncName) ||
          func.getSymName() == kTfQuantSaveFuncName) {
        return true;
      }
    
      for (func::FuncOp init_func :
           tf_saved_model::GetInitializerFunctions(module)) {
        if (func.getSymName() == init_func.getSymName()) {
          return true;
        }
      }
      return false;
    }
    
    // Checks if the function is only used by supported ops. Returns false when the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/controllermanager.go

    // The bool indicates whether the controller was enabled.
    type InitFunc func(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller controller.Interface, enabled bool, err error)
    
    type ControllerDescriptor struct {
    	name                      string
    	initFunc                  InitFunc
    	requiredFeatureGates      []featuregate.Feature
    	aliases                   []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/policy.go

    )
    
    func newDisruptionControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.DisruptionController,
    		aliases:  []string{"disruption"},
    		initFunc: startDisruptionController,
    	}
    }
    
    func startDisruptionController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

      // CHECK-NOT: tf.GeneratorDataset
      %0 = "tf.GeneratorDataset"(%arg0, %arg1, %arg2, %arg3) {
          device = "/job:tpu_host_worker/replica:0/task:0/device:CPU:0",
          finalize_func = @finalize,
          init_func = @init,
          next_func = @next,
          operandSegmentSizes = array<i32: 1, 2, 1>,
          output_shapes = [#tf_type.shape<>],
          output_types = [!tf_type.string],
          metadata = ""} : (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/storageversionmigrator.go

    )
    
    func newStorageVersionMigratorControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.StorageVersionMigratorController,
    		aliases:  []string{"svm"},
    		initFunc: startSVMController,
    	}
    }
    
    func startSVMController(
    	ctx context.Context,
    	controllerContext ControllerContext,
    	controllerName string,
    ) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top