Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 962 for Handles (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

            buildTimeout *= 100
        }
    
        def cleanup() {
            stopGradle()
            if (OperatingSystem.current().isWindows()) {
                // needs delay to release file handles
                sleep(500L)
            }
        }
    
        def setup() {
            Assume.assumeFalse("Continuous build doesn't work with --no-daemon", GradleContextualExecuter.noDaemon)
            executer.beforeExecute {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/localize_var_handles.mlir

        // CHECK: [[handle:%.*]] = "foo.bar"
        %2 = "foo.bar"(%0) : (tensor<!tf_type.resource<tensor<10xf32>>>) -> tensor<!tf_type.resource<tensor<10xf32>>>
        // CHECK-NOT: AssignVariableOp
        // CHECK: "tf.AssignVariableOp"([[handle]]
        "tf.AssignVariableOp"(%2, %1) : (tensor<!tf_type.resource<tensor<10xf32>>>, tensor<10xf32>) -> ()
        return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 21:12:02 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. src/net/http/cgi/host.go

    	case "windows":
    		return []string{"SystemRoot", "COMSPEC", "PATHEXT", "WINDIR"}
    	}
    	return nil
    }()
    
    // Handler runs an executable in a subprocess with a CGI environment.
    type Handler struct {
    	Path string // path to the CGI executable
    	Root string // root URI prefix of handler or empty for "/"
    
    	// Dir specifies the CGI executable's working directory.
    	// If Dir is empty, the base directory of Path is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/concepts.md

    In most cases, the same tool that is used to **run the program on startup** is also used to handle automatic **restarts**.
    
    For example, this could be handled by:
    
    * Docker
    * Kubernetes
    * Docker Compose
    * Docker in Swarm Mode
    * Systemd
    * Supervisor
    * Handled internally by a cloud provider as part of their services
    * Others...
    
    ## Replication - Processes and Memory
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/manager.go

    	// If there is any error, processing gets aborted.
    	// We could try to continue, but that would make the code more complex.
    	for pluginName, claims := range batches {
    		// Call NodePrepareResources RPC for all resource handles.
    		client, err := dra.NewDRAPluginClient(pluginName)
    		if err != nil {
    			return fmt.Errorf("failed to get DRA Plugin client for plugin name %s: %v", pluginName, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    // NewRequestInfo returns the information from the http request.  If error is not nil, RequestInfo holds the information as best it is known before the failure
    // It handles both resource and non-resource requests and fills in all the pertinent information for each.
    // Valid Inputs:
    // Resource paths
    // /apis/{api-group}/{version}/namespaces
    // /api/{version}/namespaces
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

                    }
                }
            """
    
            when:
            moduleA.ivy.expectDownload()
            moduleA.jar.expectDownload()
    
            // Handles missing in repo1
            missingModuleB.ivy.expectDownloadMissing()
    
            moduleB.ivy.expectDownload()
            moduleB.jar.expectDownload()
    
    
            then:
            succeeds('listJars')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

                    doLast {
                        println 'do something'
                    }
                }
            """
    
            expect:
            succeeds(":third-build:sub:doSomething")
        }
    
        def "handles overlapping names between composite and a subproject within the composite"() {
            setup:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('lib')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

            checkCompile recompiled: [], removed: [source2]
    
            when:
            sourceAdded(source2, [])
    
            then:
            checkCompile recompiled: [source2], removed: []
        }
    
        def "handles source file that is also a dependency"() {
            given:
            initialFiles()
    
            when:
            modified(dep2, [source2])
    
            then:
            checkCompile recompiled: [source1], removed: []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

         * @param number the total number of diagnostics of the given kind
         */
        private static void printDiagnosticCount(Log logger, String kind, int number) {
            // Compiler only handles 'error' and 'warn' kinds
            if (!("error".equals(kind) || "warn".equals(kind))) {
                throw new IllegalArgumentException("kind must be either 'error' or 'warn'");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top