Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 127 for Honor (0.09 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                        .withPropertyName("installDirectory");
                    task.setExecutable(installTask.getRunScriptFile().get().getAsFile());
                    task.dependsOn(binary.getInstallDirectory());
                    // TODO: Honor changes to build directory
                    task.setOutputDir(project.getLayout().getBuildDirectory().dir("test-results/" + binary.getNames().getDirName()).get().getAsFile());
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        that 99.99% of servers do it right this fallback is obsolete.
     *  Fix: Do not honor cookies set on a public domain. Previously a malicious site could inject
        cookies on top-level domains like `co.uk` because our cookie parser didn't honor the [public
        suffix][public_suffix] list. Alongside this fix is a new API, `HttpUrl.topPrivateDomain()`,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. pkg/controller/certificates/signer/signer.go

    	return pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: der}), nil
    }
    
    func (s *signer) duration(expirationSeconds *int32) time.Duration {
    	if expirationSeconds == nil {
    		return s.certTTL
    	}
    
    	// honor requested duration is if it is less than the default TTL
    	// use 10 min (2x hard coded backdate above) as a sanity check lower bound
    	const min = 10 * time.Minute
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    type GracefulDeleter interface {
    	// Delete finds a resource in the storage and deletes it.
    	// The delete attempt is validated by the deleteValidation first.
    	// If options are provided, the resource will attempt to honor them or return an invalid
    	// request error.
    	// Although it can return an arbitrary error value, IsNotFound(err) is true for the
    	// returned error value err when the specified resource is not found.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                // the runtime variant is supposed to include everything
                return true
            }
            if (testVariant == 'api' && repoType == 'ivy') {
                // classic ivy metadata interpretation does not honor api/runtime separation
                return true
            }
            return false
        }
    
        private static String expectedConfiguration(repoType, testVariant) {
            if (repoType.contains('gradle')) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. cmd/handler-api.go

    		return 0
    	}
    	return limit
    }
    
    func availableMemory() (available uint64) {
    	available = 2048 * blockSizeV2 * 2 // Default to 4 GiB when we can't find the limits.
    
    	if runtime.GOOS == "linux" {
    		// Honor cgroup limits if set.
    		limit := cgroupMemLimit()
    		if limit > 0 {
    			// A valid value is found, return its 90%
    			available = (limit * 9) / 10
    			return
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    		panic(r)
    	}
    }
    
    // logPanic logs the caller tree when a panic occurs (except in the special case of http.ErrAbortHandler).
    func logPanic(ctx context.Context, r interface{}) {
    	if r == http.ErrAbortHandler {
    		// honor the http.ErrAbortHandler sentinel panic value:
    		//   ErrAbortHandler is a sentinel panic value to abort a handler.
    		//   While any panic from ServeHTTP aborts the response to the client,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. docs/distributed/README.md

    **In our tests we also found ext4 does not honor POSIX O_DIRECT/Fdatasync semantics, ext4 trades performance for consistency guarantees. Please avoid ext4 in your setup.**
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    3. Assign a shared build service provider to the property (optional, when using `@ServiceReference(<serviceName>)`).
    4. Declare the association between the task and the service so Gradle can properly honor the build service lifecycle and its usage constraints (also optional when using `@ServiceReference`).
    
    Note that using a service with any other annotation is currently not supported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. CHANGELOG.md

     *  New: `OkHttpClient.webSocketCloseTimeout` configures how long a web socket connection will wait
        for a graceful shutdown before it performs an abrupt shutdown.
    
     *  Fix: Honor `RequestBody.isOneShot()` in `MultipartBody`
    
     *  Fix in `okhttp-coroutines`: Don't leak response bodies in `executeAsync()`. We had a bug where
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top