Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 128 for input1 (0.1 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	19: "power-Fail/Restart",
    	20: "window Size Change",
    	21: "urgent Socket Condition",
    	22: "pollable Event",
    	23: "stopped (signal)",
    	24: "stopped (user)",
    	25: "continued",
    	26: "stopped (tty input)",
    	27: "stopped (tty output)",
    	28: "virtual Timer Expired",
    	29: "profiling Timer Expired",
    	30: "cpu Limit Exceeded",
    	31: "file Size Limit Exceeded",
    	32: "no runnable lwp",
    	33: "inter-lwp signal",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: return [[RES]]
      func.return %0 : tensor<*xf32>
    }
    
    // CHECK-LABEL: func @l2_loss
    // CHECK-SAME: (%[[INPUT:.*]]: tensor<?x?xf32>)
    func.func @l2_loss(%arg0: tensor<?x?xf32>) -> tensor<f32> {
    
      // CHECK-DAG: %[[SQUARE:.*]] = "tf.Mul"(%[[INPUT]], %[[INPUT]]) : (tensor<?x?xf32>, tensor<?x?xf32>) -> tensor<?x?xf32>
      // CHECK-DAG: %[[REDUCE_AXES:.*]] = "tf.Const"() <{value = dense<[0, 1]> : tensor<2xi64>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults_test.go

    						}},
    					},
    				},
    			},
    		}
    		template := rc.Spec.Template
    		defaults := detectDefaults(t, rc, reflect.ValueOf(template))
    		expected := func() map[string]string {
    			// Set values that are known inputs
    			m := map[string]string{
    				".Spec.HostNetwork":                          "true",
    				".Spec.Containers[0].Ports[0].ContainerPort": "12345",
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/crypto/des/des_test.go

    			c := newCipher(tt.key)
    			out = make([]byte, len(in))
    			c.Encrypt(out, in)
    			return
    		}
    
    		// Encrypting twice with a DES weak
    		// key should reproduce the original input
    		result := encrypt(tt.in)
    		result = encrypt(result)
    
    		if !bytes.Equal(result, tt.in) {
    			t.Errorf("#%d: result: %x want: %x", i, result, tt.in)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	nameLen, err := safeload(ppa1 + nameLenOffset)
    	if err != 0 {
    		return 1
    	}
    
    	nameLen >>= 48
    	if nameLen > 128 {
    		return 1
    	}
    
    	// no function name input to argument end here
    	if funcName == "" {
    		return 0
    	}
    
    	var funcname [128]byte
    	for i := 0; i < int(nameLen); i += 8 {
    		v, err := safeload(ppa1 + nameOffset + uintptr(i))
    		if err != 0 {
    			return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{21, "SIGURG", "urgent Socket Condition"},
    	{22, "SIGIO", "pollable Event"},
    	{23, "SIGSTOP", "stopped (signal)"},
    	{24, "SIGTSTP", "stopped (user)"},
    	{25, "SIGCONT", "continued"},
    	{26, "SIGTTIN", "stopped (tty input)"},
    	{27, "SIGTTOU", "stopped (tty output)"},
    	{28, "SIGVTALRM", "virtual Timer Expired"},
    	{29, "SIGPROF", "profiling Timer Expired"},
    	{30, "SIGXCPU", "cpu Limit Exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  7. tensorflow/BUILD

        outs = ["tensorflow_filtered_def_file.def"],
        cmd = select({
            "//tensorflow:windows": """
                  $(location @local_config_def_file_filter//:def_file_filter) \\
                  --input $(location :tensorflow_def_file) \\
                  --output $@
              """,
            "//conditions:default": "touch $@",  # Just a placeholder for Unix platforms
        }),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ppc64/ssa.go

    		p.To.Reg = v.Reg()
    
    	case ssa.OpPPC64LoweredGetCallerPC:
    		p := s.Prog(obj.AGETCALLERPC)
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    
    	case ssa.OpPPC64LoweredRound32F, ssa.OpPPC64LoweredRound64F:
    		// input is already rounded
    
    	case ssa.OpLoadReg:
    		loadOp := loadByType(v.Type)
    		p := s.Prog(loadOp)
    		ssagen.AddrAuto(&p.From, v.Args[0])
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    // PutObject - writes an object to least used erasure pool.
    func (z *erasureServerPools) PutObject(ctx context.Context, bucket string, object string, data *PutObjReader, opts ObjectOptions) (ObjectInfo, error) {
    	// Validate put object input args.
    	if err := checkPutObjectArgs(ctx, bucket, object); err != nil {
    		return ObjectInfo{}, err
    	}
    
    	object = encodeDirObject(object)
    	if z.SinglePool() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  10. go.sum

    github.com/charmbracelet/x/ansi v0.1.2 h1:6+LR39uG8DE6zAmbu023YlqjJHkYXDF1z36ZwzO4xZY=
    github.com/charmbracelet/x/ansi v0.1.2/go.mod h1:dk73KoMTT5AX5BsX0KrqhsTqAnhZZoCBjs7dGWp4Ktw=
    github.com/charmbracelet/x/input v0.1.2 h1:QJAZr33eOhDowkkEQ24rsJy4Llxlm+fRDf/cQrmqJa0=
    github.com/charmbracelet/x/input v0.1.2/go.mod h1:LGBim0maUY4Pitjn/4fHnuXb4KirU3DODsyuHuXdOyA=
    github.com/charmbracelet/x/term v0.1.1 h1:3cosVAiPOig+EV4X9U+3LDgtwwAoEzJjNdwbXDjF6yI=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
Back to top