Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 829 for OUT (0.02 sec)

  1. src/crypto/aes/gcm_s390x.go

    // tagMask and writes the result to out.
    func (g *gcmAsm) auth(out, ciphertext, additionalData []byte, tagMask *[gcmTagSize]byte) {
    	var hash [16]byte
    	g.paddedGHASH(&hash, additionalData)
    	g.paddedGHASH(&hash, ciphertext)
    	lens := gcmLengths(uint64(len(additionalData))*8, uint64(len(ciphertext))*8)
    	g.paddedGHASH(&hash, lens[:])
    
    	copy(out, hash[:])
    	for i := range out {
    		out[i] ^= tagMask[i]
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                        System.out.println("action = " + action);
                        System.out.println("projectDir = " + projectDir);
                        System.out.println("gradleVersion = " + gradleVersion);
                        System.out.println("javaHome = " + javaHome);
                        System.out.println("gradleUserHome = " + gradleUserHome);
                        System.out.println("allow unusable daemons = " + allowUnusable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/config.go

    	kubeConfigFile = cmdutil.GetKubeConfigPath(kubeConfigFile)
    	cmd.AddCommand(newCmdConfigPrint(out))
    	cmd.AddCommand(newCmdConfigMigrate(out))
    	cmd.AddCommand(newCmdConfigValidate(out))
    	cmd.AddCommand(newCmdConfigImages(out))
    	return cmd
    }
    
    // newCmdConfigPrint returns cobra.Command for "kubeadm config print" command
    func newCmdConfigPrint(out io.Writer) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "print",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/syscall/exec_linux_test.go

    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		if testenv.SyscallIsNotSupported(err) {
    			t.Skipf("skipping: could not start process with CLONE_NEWNS: %v", err)
    		}
    		t.Fatalf("unshare failed: %v\n%s", err, out)
    	} else if len(out) != 0 {
    		if bytes.HasPrefix(out, []byte(mountNotSupported)) {
    			t.Skipf("skipping: helper process reported %s", out)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/runtime/error.go

    var boundsNegErrorFmts = [...]string{
    	boundsIndex:      "index out of range [%x]",
    	boundsSliceAlen:  "slice bounds out of range [:%x]",
    	boundsSliceAcap:  "slice bounds out of range [:%x]",
    	boundsSliceB:     "slice bounds out of range [%x:]",
    	boundsSlice3Alen: "slice bounds out of range [::%x]",
    	boundsSlice3Acap: "slice bounds out of range [::%x]",
    	boundsSlice3B:    "slice bounds out of range [:%x:]",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            releaseBinary.assertExists()
            releaseBinary.exec().out == app.withFeatureEnabled().expectedOutput
            installation("build/install/main/release").exec().out == app.withFeatureEnabled().expectedOutput
            releaseBinary.assertHasStrippedDebugSymbolsFor(['main.o', 'greeter.o'])
    
            succeeds "assembleDebug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    }
    
    func toProtoBuf(b *testing.B, list *v1.PodList) []byte {
    	out, err := list.Marshal()
    	if err != nil {
    		b.Fatalf("Failed to marshal list to protobuf: %v", err)
    	}
    	return out
    }
    
    func toJSON(b *testing.B, list *v1.PodList) []byte {
    	out, err := json.Marshal(list)
    	if err != nil {
    		b.Fatalf("Failed to marshal list to json: %v", err)
    	}
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/grpcgen/lds.go

    		// replacement for permissive.
    		mode = model.MTLSDisable
    	}
    
    	var out []*listener.FilterChain
    	switch mode {
    	case model.MTLSDisable:
    		out = append(out, buildInboundFilterChain(node, push, "plaintext", nil))
    	case model.MTLSStrict:
    		out = append(out, buildInboundFilterChain(node, push, "mtls", tlsContext))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_waypoint.go

    		out.RequestHeadersToAdd = append(out.RequestHeadersToAdd, weighted[0].RequestHeadersToAdd...)
    		out.RequestHeadersToRemove = append(out.RequestHeadersToRemove, weighted[0].RequestHeadersToRemove...)
    		out.ResponseHeadersToAdd = append(out.ResponseHeadersToAdd, weighted[0].ResponseHeadersToAdd...)
    		out.ResponseHeadersToRemove = append(out.ResponseHeadersToRemove, weighted[0].ResponseHeadersToRemove...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. tensorflow/c/kernels_experimental.cc

      } else {
        binary_add_func(ctx, a, b, out);
        return cc_ctx->status();
      }
    }
    
    static Status VariantBinaryAddFunc(
        ::tensorflow::OpKernelContext* cc_ctx, const Variant& a, const Variant& b,
        Variant* out,
        void (*binary_add_func)(TF_OpKernelContext* ctx, TF_Tensor* a, TF_Tensor* b,
                                TF_Tensor* out)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top