Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for constructs (0.2 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

    import java.io.IOException;
    import java.net.URL;
    import java.net.URLClassLoader;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Function;
    
    /**
     * Constructs the application and implementation classpaths for a test process,
     * while also optionally loading test framework implementation dependencies from
     * the distribution.
     *
     * @see ForkedTestClasspath
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/options.go

    )
    
    // Revision is the value of the Istio control plane revision, e.g. "canary",
    // and is the value used by the "istio.io/rev" label.
    var Revision = env.Register("REVISION", "", "").Get()
    
    // NewPilotArgs constructs pilotArgs with default values.
    func NewPilotArgs(initFuncs ...func(*PilotArgs)) *PilotArgs {
    	p := &PilotArgs{}
    
    	// Apply Default Values.
    	p.applyDefaults()
    
    	// Apply custom initialization functions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    // EnsureAdminClusterRoleBinding constructs a client from admin.conf and optionally
    // constructs a client from super-admin.conf if the file exists. It then proceeds
    // to pass the clients to EnsureAdminClusterRoleBindingImpl. The function returns a
    // usable client from admin.conf with RBAC properly constructed or an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. cmd/bucket-replication-utils.go

    	for _, rinfo := range rinfos.Targets {
    		if rinfo.ResyncTimestamp != "" {
    			rs.ResetStatusesMap[targetResetHeader(rinfo.Arn)] = rinfo.ResyncTimestamp
    		}
    	}
    	return rs
    }
    
    // constructs a replication status map from string representation
    func replicationStatusesMap(s string) map[string]replication.StatusType {
    	targets := make(map[string]replication.StatusType)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/config.go

    		genericConfig.AggregatedDiscoveryGroupManager = aggregated.NewResourceManager("apis")
    	}
    
    	return
    }
    
    // BuildAuthorizer constructs the authorizer. If authorization is not set in s, it returns nil, nil, false, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    				klog.InfoS("unsupported configuration:KubeletCgroups is not within KubeReservedCgroup")
    			}
    
    			// construct a KubeletServer from kubeletFlags and kubeletConfig
    			kubeletServer := &options.KubeletServer{
    				KubeletFlags:         *kubeletFlags,
    				KubeletConfiguration: *kubeletConfig,
    			}
    
    			// use kubeletServer to construct the default KubeletDeps
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    type restoreObjStatus struct {
    	ongoing bool
    	expiry  time.Time
    }
    
    // ongoingRestoreObj constructs restoreObjStatus for an ongoing restore-object.
    func ongoingRestoreObj() restoreObjStatus {
    	return restoreObjStatus{
    		ongoing: true,
    	}
    }
    
    // completeRestoreObj constructs restoreObjStatus for a completed restore-object with given expiry.
    func completedRestoreObj(expiry time.Time) restoreObjStatus {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. pkg/security/security.go

    type SecretManager interface {
    	// GenerateSecret generates new secret for the given resource.
    	//
    	// The current implementation also watched the generated secret and trigger a callback when it is
    	// near expiry. It will constructs the SAN based on the token's 'sub' claim, expected to be in
    	// the K8S format. No other JWTs are currently supported due to client logic. If JWT is
    	// missing/invalid, the resourceName is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit.go

    	return framework.QueueSkip, nil
    }
    
    // isFit checks if the pod fits the node. If the node is nil, it returns false.
    // It constructs a fake NodeInfo object for the node and checks if the pod fits the node.
    func isFit(pod *v1.Pod, node *v1.Node) bool {
    	if node == nil {
    		return false
    	}
    	nodeInfo := framework.NewNodeInfo()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        auto original_point = rewriter.saveInsertionPoint();
        rewriter.setInsertionPointAfter(op->getParentOfType<func::FuncOp>());
        SymbolTable manager(op->getParentOfType<ModuleOp>());
    
        // Constructs `then_branch`, which is executed when `if_cond` evaluates to
        // true.
        auto then_branch_op =
            rewriter.create<func::FuncOp>(loc, "cond_true", func_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top