Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 375 for initiatives (0.13 sec)

  1. pkg/scheduler/testing/framework/fake_plugins.go

    	return framework.NewStatus(framework.Unschedulable, ErrReasonFake)
    }
    
    // NewFalseFilterPlugin initializes a FalseFilterPlugin and returns it.
    func NewFalseFilterPlugin(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    	return &FalseFilterPlugin{}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. testing/precondition-tester/README.md

    such hardware, will always be ignored.
    
    Multiple occasions happened when engineers were caught by surprise finding tests not running anywhere (e.g., tests depending on non-LTS, cleaned up JDK distributions). This project is the result of an initiative to [redesign the [recondition] system](https://github.com/gradle/gradle/pull/22885), where we aim to precisely track if all preconditions are satisfied...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/reconciler_helpers.go

    // add adds totals from another totalsByAction struct.
    func (t *totalsByAction) add(totals totalsByAction) {
    	t.added += totals.added
    	t.updated += totals.updated
    	t.removed += totals.removed
    }
    
    // newDesiredCalc initializes and returns a new desiredCalc.
    func newDesiredCalc() *desiredCalc {
    	return &desiredCalc{
    		portsByKey:          map[addrTypePortMapKey][]discovery.EndpointPort{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentInitializer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.agent;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Initializes the instrumenting agent.
     */
    @ServiceScope(Scope.Global.class)
    public class AgentInitializer {
        private final AgentStatus agentStatus;
    
        public AgentInitializer(AgentStatus agentStatus) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         *
         * @since 8.3
         */
        ConfigurableFilePermissions directoryPermissions(Action<? super ConfigurableFilePermissions> configureAction);
    
        /**
         * Creates file/directory access permissions and initializes them via a Unix style permission string.
         * For details see {@link ConfigurableFilePermissions#unix(String)}.
         * <p>
         * Doesn't have separate variants for files and directories, like other configuration methods,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

                return from(!"false".equalsIgnoreCase(value));
            }
        }
    
        /**
         * Initializes the native services to use the given user home directory to store native libs and other resources. Does nothing if already initialized.
         *
         * Initializes all the services needed for the Gradle daemon.
         */
        public static void initializeOnDaemon(File userHomeDir, NativeServicesMode mode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/debug/debug.h

    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/debug/debug_options.pb.h"
    
    namespace tensorflow {
    
    // Initializes the pass manager with default options that make debugging easier.
    // The `out` method parameter is exposed for testing purposes and not intended
    // to be specified by client code.
    void InitPassManager(mlir::PassManager& pm,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 05:31:44 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Defaults.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Denotes that the {@link RuleSource} method rule carrying this annotation initializes the rule subject with default values.
     * <p>
     * Default rules execute first for a given subject, just after the subject has been created but before {@link Model} rules and {@link Mutate} rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go122.go

    		return v
    	}
    	// Note: we could instead return runtime.Version() [if valid].
    	// This would act as a max version on what a tool can support.
    	return Future
    }
    
    // InitFileVersions initializes info to record Go versions for Go files.
    func InitFileVersions(info *types.Info) {
    	info.FileVersions = make(map[*ast.File]string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. pkg/proxy/util/testing/fake.go

    type FakeNetwork struct {
    	NetworkInterfaces []net.Interface
    	// The key of map Addrs is the network interface name
    	Address map[string][]net.Addr
    }
    
    // NewFakeNetwork initializes a FakeNetwork.
    func NewFakeNetwork() *FakeNetwork {
    	return &FakeNetwork{
    		NetworkInterfaces: make([]net.Interface, 0),
    		Address:           make(map[string][]net.Addr),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 05 08:08:19 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top