Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 434 for logic (0.04 sec)

  1. pilot/pkg/xds/cds.go

    	if req == nil {
    		return true
    	}
    	switch proxy.Type {
    	case model.Waypoint:
    		if model.HasConfigsOfKind(req.ConfigsUpdated, kind.Address) {
    			// TODO: this logic is identical to that used in LDS, consider refactor into a common function
    			// taken directly from LDS... waypoints need CDS updates on kind.Address changes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

         *
         * <p>Eventually, in Gradle 9.0, when {@link BuildIdentifier#isCurrentBuild()} is removed, all this logic can disappear.</p>
         */
        private LocalComponentGraphResolveState copyComponentWithForeignId(ProjectComponentIdentifier projectIdentifier) {
            ProjectState projectState = projectStateRegistry.stateFor(projectIdentifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginAdapter.java

     * Then the adapter is stored on the {@link org.gradle.internal.enterprise.core.GradleEnterprisePluginManager}.
     * <p>
     * There is some custom logic to store the adapter from the manager in the configuration cache and restore it afterward.
     * The pluginServices need to be recreated when loading from the configuration cache.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/archive/tar/writer.go

    	n = len(b0) - len(b)
    	switch {
    	case err == ErrWriteTooLong:
    		return n, errMissData // Not possible; implies bug in validation logic
    	case err != nil:
    		return n, err
    	case sw.logicalRemaining() == 0 && sw.physicalRemaining() > 0:
    		return n, errUnrefData // Not possible; implies bug in validation logic
    	case overwrite:
    		return n, ErrWriteTooLong
    	default:
    		return n, nil
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       visible static factory method whose return type is {@code C} or {@code C}'s subtype.
       * </ul>
       *
       * <p>In all cases, if {@code C} needs custom logic for testing serialization, you can add an
       * explicit {@code testSerializable()} test in the corresponding {@code CTest} class, and {@code
       * C} will be excluded from automated serialization test performed by this method.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/net/tcpconn_keepalive_solaris_test.go

    		cfg.Idle = oldCfg.Idle
    	}
    
    	tcpKeepAliveAbortThreshold := defaultTcpKeepAliveAbortThreshold
    	if unix.SupportTCPKeepAliveIdleIntvlCNT() {
    		// Check out the comment on KeepAliveConfig to understand the following logic.
    		switch {
    		case cfg.Interval == -1 && cfg.Count == -1:
    			cfg.Interval = oldCfg.Interval
    			cfg.Count = oldCfg.Count
    		case cfg.Interval == -1 && cfg.Count > 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    *Binary Plugins* are full-fledged plugins written in Java, Groovy, or Kotlin, compiled into JAR files, and published to a repository.
    They offer the best performance, maintainability, and reusability.
    They are suitable for complex build logic that needs to be shared across projects, builds, and teams.
    You can also write them in Scala or Groovy but that is not recommended.
    
    Here is a breakdown of all options for implementing Gradle plugins:
    
    [cols="~,~,~,~,~"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

                name().toLowerCase().replace('_', ' ')
            }
        }
    
        static final String ORIGINAL_GREETING = 'Hello!'
        static final String CHANGED_GREETING = "G'day!"
    
        public final String pluginId = 'build-logic'
        public final String task = 'greet'
        public final TestFile projectDir
        public final Language language
        public final Kind kind
        public final TestFile buildFile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/crypto/internal/mlkem768/mlkem768.go

    }
    
    // GenerateKey generates a new decapsulation key, drawing random bytes from
    // crypto/rand. The decapsulation key must be kept secret.
    func GenerateKey() (*DecapsulationKey, error) {
    	// The actual logic is in a separate function to outline this allocation.
    	dk := &DecapsulationKey{}
    	return generateKey(dk)
    }
    
    func generateKey(dk *DecapsulationKey) (*DecapsulationKey, error) {
    	var d [32]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    		if err != nil {
    			t.Fatalf("Test %d: %s: Failed to create HTTP request for Head Object: <ERROR> %v", i+1, instanceType, err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler,`func (api objectAPIHandlers) GetObjectHandler`  handles the request.
    		apiRouter.ServeHTTP(rec, req)
    
    		// Assert the response code with the expected status.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top