Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 234 for initiatives (0.37 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinApplicationInitIntegrationTest.groovy

            executed(":app:test")
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        @Requires(value = UnitTestPreconditions.KotlinOnlySupportsJdk21Earlier.class)
        def "initializes Kotlin application with JUnit Jupiter test framework with --split-project"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. internal/cachevalue/cache.go

    }
    
    // NewFromFunc allocates a new cached value instance and initializes it with an
    // update function, making it ready for use.
    func NewFromFunc[T any](ttl time.Duration, opts Opts, update func(ctx context.Context) (T, error)) *Cache[T] {
    	return &Cache[T]{
    		ttl:      ttl,
    		updateFn: update,
    		opts:     opts,
    	}
    }
    
    // InitOnce initializes the cache with a TTL and an update function. It is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 12:50:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. cmd/erasure-sets_test.go

    	defer cancel()
    
    	nDisks := 16 // Maximum disks.
    	var erasureDisks []string
    	for i := 0; i < nDisks; i++ {
    		// Do not attempt to create this path, the test validates
    		// so that newErasureSets initializes non existing paths
    		// and successfully returns initialized object layer.
    		disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
    		erasureDisks = append(erasureDisks, disk)
    		defer os.RemoveAll(disk)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. internal/hash/sha256/sh256.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package sha256
    
    import (
    	"crypto/sha256"
    	"hash"
    )
    
    // New initializes a new sha256.New()
    func New() hash.Hash { return sha256.New() }
    
    // Sum256 returns the SHA256 checksum of the data.
    func Sum256(data []byte) [sha256.Size]byte { return sha256.Sum256(data) }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 06:31:35 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top