Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 173 for Write (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        outputFile.set(layout.buildDirectory.file("summary.txt"))
    }
    
    dependencies {
        sourceFiles(files("input.txt"))
    }
    '''
            def inputFile = file('input.txt').tap { write("the input file") }
            def outputFile = file('build/summary.txt')
            def expectedOutput = "input.txt: ${inputFile.length()}"
            def configurationCache = newConfigurationCacheFixture()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	syms = append(syms, lineProlog)
    	lsu := d.ldr.MakeSymbolUpdater(lineProlog)
    	lsDwsym := dwSym(lineProlog)
    	newattr(unit.DWInfo, dwarf.DW_AT_stmt_list, dwarf.DW_CLS_PTR, 0, lsDwsym)
    
    	// Write .debug_line Line Number Program Header (sec 6.2.4)
    	// Fields marked with (*) must be changed for 64-bit dwarf
    	unitLengthOffset := lsu.Size()
    	d.createUnitLength(lsu, 0) // unit_length (*), filled in at end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. pkg/controller/endpoint/endpoints_controller_test.go

    	handlerFunc := func(res http.ResponseWriter, req *http.Request) {
    		if controller == nil {
    			res.WriteHeader(http.StatusInternalServerError)
    			res.Write([]byte("controller has not been set yet"))
    			return
    		}
    
    		if req.Method == "POST" {
    			controller.endpointsStore.Add(endpoint)
    			blockNextAction <- struct{}{}
    		}
    
    		if req.Method == "DELETE" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    //   DoSomethingWithOperation(oper);
    // }
    TF_CAPI_EXPORT extern TF_Operation* TF_GraphNextOperation(TF_Graph* graph,
                                                              size_t* pos);
    
    // Write out a serialized representation of `graph` (as a GraphDef protocol
    // message) to `output_graph_def` (allocated by TF_NewBuffer()).
    // `output_graph_def`'s underlying buffer will be freed when TF_DeleteBuffer()
    // is called.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/SetsTest.java

        ObjectOutputStream out = new ObjectOutputStream(bos);
    
        out.writeObject(original);
    
        byte[] handle = toByteArray(baseWireHandle + handleOffset);
        byte[] ref = prepended(TC_REFERENCE, handle);
        bos.write(ref);
    
        return bos.toByteArray();
      }
    
      private static byte[] prepended(byte b, byte[] array) {
        byte[] out = new byte[array.length + 1];
        out[0] = b;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/c/c_api_test.cc

      const string input_name =
          signature_def.inputs().at(tensorflow::kRegressInputs).name();
      const string output_name =
          signature_def.outputs().at(tensorflow::kRegressOutputs).name();
    
      // Write {0, 1, 2, 3} as tensorflow::Example inputs.
      Tensor input(tensorflow::DT_STRING, TensorShape({4}));
      for (int64_t i = 0; i < input.NumElements(); ++i) {
        tensorflow::Example example;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top