Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 128 for honoured (0.26 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                blockingServer.expectConcurrent(":b:cPing")
                run ":a:aPing", ":b:cPing"
            }
        }
    
        def "explicit task dependency relationships are honored even if it violates destroys/creates/consumes relationships"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
                def foo = file("foo")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/SingleUseDaemonClient.java

    import org.gradle.launcher.exec.BuildActionResult;
    
    import java.io.InputStream;
    import java.util.UUID;
    
    public class SingleUseDaemonClient extends DaemonClient {
        public static final String MESSAGE = "To honour the JVM settings for this build a single-use Daemon process will be forked.";
        private static final Logger LOGGER = Logging.getLogger(SingleUseDaemonClient.class);
        private final DocumentationRegistry documentationRegistry;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. internal/http/listener.go

    }
    
    // TCPOptions specify customizable TCP optimizations on raw socket
    type TCPOptions struct {
    	UserTimeout int // this value is expected to be in milliseconds
    
    	// When the net.Conn is a remote drive this value is honored, we close the connection to remote peer proactively.
    	DriveOPTimeout func() time.Duration
    
    	SendBufSize int              // SO_SNDBUF size for the socket connection, NOTE: this sets server and client connection
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. cmd/os-reliable.go

    			// Windows can have both isSysErrNotDir(err) and osIsNotExist(err) returning
    			// true if the source file path contains an non-existent directory. In that case,
    			// we want to return errFileNotFound instead, which will honored in subsequent
    			// switch cases
    			return errFileAccessDenied
    		case isSysErrPathNotFound(err):
    			// This is a special case should be handled only for
    			// windows, because windows API does not return "not a
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    					{"planet", "mars"}: ptr.To[int64](0),
    				},
    				TopologyNormalizingWeight: []float64{topologyNormalizingWeight(1)},
    			},
    		},
    		{
    			name: "NodeAffinityPolicy honored with labelSelectors",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				NodeSelector(map[string]string{"foo": ""}).
    				SpreadConstraint(1, "zone", v1.ScheduleAnyway, barSelector, nil, nil, nil, nil).
    				Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Top-level and per-version schemas are mutually exclusive.
    	// Per-version schemas must not all be set to identical values (top-level validation schema should be used instead)
    	// This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.
    	// +optional
    	Schema *CustomResourceValidation
    	// Subresources describes the subresources for CustomResource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/FileSystemAccess.java

    import java.io.IOException;
    import java.util.Optional;
    
    /**
     * Provides access to snapshots of the content and metadata of the file system.
     *
     * The implementation will attempt to efficiently honour the queries, maintaining some or all state in-memory and dealing with concurrent access to the same parts of the file system.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy_test.go

    	downstream = stream(t, conn)
    	sendDownstreamWithNode(t, downstream, node)
    
    	// When we reconnect, our status update should still persist
    	expectCondition(status.StatusTrue)
    
    	// Confirm more updates are honored
    	proxy.sendHealthCheckRequest(healthy)
    	expectCondition(status.StatusTrue)
    	proxy.sendHealthCheckRequest(unhealthy)
    	expectCondition(status.StatusFalse)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiHonorsProjectCustomizationsCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    
    class ToolingApiHonorsProjectCustomizationsCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def "should honour reconfigured project names"() {
    
            file('build.gradle').text = '''
    allprojects {
        apply plugin: 'java'
        apply plugin: 'eclipse'
    }
    
    project(':api') {
        eclipse.project.name = 'gradle-api'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/generated.proto

      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      optional string volumeBindingMode = 7;
    
      // allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top