Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 154 for write1 (0.13 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// that can be used to write data.
      ///
      /// Note: the `buffer` argument is NOT a null terminated string!
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if exactly `n` bytes have been written.
      ///   * Must set `status` to `TF_RESOURCE_EXHAUSTED` if fewer than `n` bytes
      ///     have been written, potentially due to quota/disk space.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				service: tt.service,
    			}
    			h.state.Store(&tt.state)
    
    			err := h.rotateDEKOnKeyIDChange(ctx, tt.statusKeyID, "panda")
    
    			klog.Flush()
    			klog.SetOutput(io.Discard) // prevent further writes into buf
    
    			if diff := cmp.Diff(tt.wantLogs, logLines(buf.String())); len(diff) > 0 {
    				t.Errorf("log mismatch (-want +got):\n%s", diff)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    		t.Errorf("for path %q got %q, want %q", filename, s, contents)
    	}
    	res.Body.Close()
    }
    
    type gzipResponseWriter struct {
    	ResponseWriter
    	w *gzip.Writer
    }
    
    func (grw gzipResponseWriter) Write(b []byte) (int, error) {
    	return grw.w.Write(b)
    }
    
    func (grw gzipResponseWriter) Flush() {
    	grw.w.Flush()
    	if fw, ok := grw.ResponseWriter.(http.Flusher); ok {
    		fw.Flush()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    	// Sort by lo increasing, hi decreasing to break ties.
    	sort.Sort(ranges{rp})
    
    	r := *rp
    	if len(r) < 2 {
    		return r
    	}
    
    	// Merge abutting, overlapping.
    	w := 2 // write index
    	for i := 2; i < len(r); i += 2 {
    		lo, hi := r[i], r[i+1]
    		if lo <= r[w-1]+1 {
    			// merge with previous range
    			if hi > r[w-1] {
    				r[w-1] = hi
    			}
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    4. Run the builds scripts for the build, applying any requested project plugins.
    5. Calculate the task graph for the requested tasks, running any deferred configuration actions.
    
    Following the configuration phase, Gradle writes a snapshot of the task graph to a new configuration cache entry, for later Gradle invocations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    }
    
    var libc_unmount_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_unmount unmount "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func write(fd int, p []byte) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(p) > 0 {
    		_p0 = unsafe.Pointer(&p[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    				return InsecureAlgorithmError(algo)
    			}
    			x509sha1.IncNonDefault()
    		}
    		fallthrough
    	default:
    		if !hashType.Available() {
    			return ErrUnsupportedAlgorithm
    		}
    		h := hashType.New()
    		h.Write(signed)
    		signed = h.Sum(nil)
    	}
    
    	switch pub := publicKey.(type) {
    	case *rsa.PublicKey:
    		if pubKeyAlgo != RSA {
    			return signaturePublicKeyAlgoMismatchError(pubKeyAlgo, pub)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         *
         * There's another reason for not allowing inheritance: it allows more precise selection, while still
         * allowing the build author/plugin writer to decide what attributes should be copied to child configurations.
         *
         */
        def "attributes of parent configurations should not be used when matching"() {
            given:
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    func (c *Config) initLegacySessionTicketKeyRLocked() {
    	// Don't write if SessionTicketKey is already defined as our deprecated string,
    	// or if it is defined by the user but sessionTicketKeys is already set.
    	if c.SessionTicketKey != [32]byte{} &&
    		(bytes.HasPrefix(c.SessionTicketKey[:], deprecatedSessionTicketKey) || len(c.sessionTicketKeys) > 0) {
    		return
    	}
    
    	// We need to write some data, so get an exclusive lock and re-check any conditions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            beforeExecute(gradleExecuter -> {
                TestFile userHome = testDirectoryProvider.getTestDirectory().file("user-home");
                withGradleUserHomeDir(userHome);
                userHome.file("init.d/mirrors.gradle").write(RepoScriptBlockUtil.mirrorInitScript());
            });
            return this;
        }
    
        @Override
        public GradleExecuter withPluginRepositoryMirrorDisabled() {
            disablePluginRepositoryMirror = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top