Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 534 for Opened (0.14 sec)

  1. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem_helper.cc

      //   If file exists, truncate its size to 0.
      int dst_fd = open(dst, O_WRONLY | O_CREAT | O_TRUNC, open_mode);
      if (dst_fd < 0) {
        close(src_fd);
        return -1;
      }
    
      // Both files have been opened, do the transfer.
      // Since errno would be overridden by `close` below, save it here.
      int error_code = 0;
      if (CopyFileContents(dst_fd, src_fd, size) < 0) error_code = errno;
    
      close(src_fd);
      close(dst_fd);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 16 05:36:52 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildGateIntegrationTest.groovy

                } as ${PendingChangesListener.canonicalName})
    
                task work(type: SimpleTask)
            """
    
            file("input.txt").text = "start"
        }
    
        def "build only starts when gate is opened"() {
            server.expect(server.get("command").send("close"))
            def command = server.expectAndBlock(server.get("command").send("open"))
    
            def inputFile = file("input.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/lib/queries.libsonnet

              |||
                sum by (pod) (
                  go_goroutines{%(appLabels)s}
                )
              |||
            ),
    
          connections:
            [
              self.query(
                'Opened ({{pod}})',
                |||
                  sum by (pod) (
                    rate(
                      istio_tcp_connections_opened_total{%(podLabels)s}
                    [$__rate_interval])
                  )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/CharSourceTest.java

          TestCharSource okSource = new TestCharSource(STRING);
          assertThrows(IOException.class, () -> okSource.copyTo(new TestCharSink(option)));
          // ensure reader was closed IF it was opened (depends on implementation whether or not it's
          // opened at all if sink.newWriter() throws).
          assertTrue(
              "stream not closed when copying to sink with option: " + option,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/ztunnel-dashboard.gen.json

             "type": "row"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Connections opened and closed per instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/os/stat_test.go

    	}
    
    	if params.isLink {
    		if os.SameFile(sfi2, lsfi) {
    			t.Errorf("stat of opened %q file and lstat of %q should not be the same", path, path)
    		}
    	} else {
    		if !os.SameFile(sfi2, lsfi) {
    			t.Errorf("stat of opened %q file and lstat of %q should be the same", path, path)
    		}
    	}
    
    	parentdir, base := filepath.Split(path)
    	if parentdir == "" || base == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/cache/UnscopedCacheBuilderFactory.java

        /**
         * Returns a builder for the cache with the given base directory. You should prefer one of the other ways of creating a cache with a scoped builder.
         *
         * <p>By default a cache is opened with a shared lock, so that it can be accessed by multiple processes. It is the caller's responsibility
         * to coordinate access to the cache. The initial lock level can be changed using the provided builder </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:18:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/runtime/env_plan9.go

    			r--
    		}
    		name[len(name)-1] = '='
    		env := make([]byte, len(name)+r)
    		copy(env, name)
    		copy(env[len(name):], buf[:r])
    		envs = append(envs, string(env))
    	})
    }
    
    // dofiles reads the directory opened with file descriptor fd, applying function f
    // to each filename in it.
    //
    //go:nosplit
    func dofiles(dirfd int32, f func([]byte)) {
    	dirbuf := new([dirBufSize]byte)
    
    	var off int64 = 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpResponseResourceTest.groovy

            def resource = this.resource()
            resource.openStream()
            and:
            resource.openStream()
            then:
            def ex = thrown(IOException);
            ex.message == "Unable to open Stream as it was opened before."
        }
    
        def "provides access to arbitrary headers"() {
            given:
            addHeader(name, value)
    
            expect:
            resource().getHeaderValue(name) == value
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. .github/workflows/sigbuild-docker-presubmit.yml

    # limitations under the License.
    # ==============================================================================
    
    name: Build SIG Build containers as presubmits
    
    on:
      pull_request:
        types: [labeled, opened, synchronize, reopened]
        paths:
          - '.github/workflows/sigbuild-docker-presubmit.yml'
          - 'tensorflow/tools/tf_sig_build_dockerfiles/**'
          - '!tensorflow/tools/tf_sig_build_dockerfiles/README.md'
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top