Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 78 for Binary1 (0.43 sec)

  1. src/reflect/type.go

    	prototype := *(**ptrType)(unsafe.Pointer(&iptr))
    	pp := *prototype
    
    	pp.Str = resolveReflectName(newName(s, "", false, false))
    	pp.PtrToThis = 0
    
    	// For the type structures linked into the binary, the
    	// compiler provides a good hash of the string.
    	// Create a good hash for the new string by using
    	// the FNV-1 hash's mixing function to combine the
    	// old hash and the new "*".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "FMOVDstoreidx", argLength: 4, reg: fpstoreidx, asm: "FMOVD", aux: "SymOff", symEffect: "Write"},                 // fp64 indexed by i store
    
    		// binary ops
    		{name: "ADD", argLength: 2, reg: gp21sp, asm: "ADD", commutative: true, clobberFlags: true},                                                                  // arg0 + arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    			pp.Path[0] = '@'
    		}
    
    		// Assume path ends at NUL.
    		// This is not technically the Linux semantics for
    		// abstract Unix domain sockets--they are supposed
    		// to be uninterpreted fixed-size binary blobs--but
    		// everyone uses this convention.
    		n := 0
    		for n < len(pp.Path) && pp.Path[n] != 0 {
    			n++
    		}
    		sa.Name = string(unsafe.Slice((*byte)(unsafe.Pointer(&pp.Path[0])), n))
    		return sa, nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. src/math/big/float_test.go

    		t.Errorf("zero value = %s; want 0.0", s)
    	}
    
    	// zero value has precision 0
    	if prec := x.Prec(); prec != 0 {
    		t.Errorf("prec = %d; want 0", prec)
    	}
    
    	// zero value can be used in any and all positions of binary operations
    	make := func(x int) *Float {
    		var f Float
    		if x != 0 {
    			f.SetInt64(int64(x))
    		}
    		// x == 0 translates into the zero value
    		return &f
    	}
    	for _, test := range []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.Struct podAnnotations = 10 [deprecated = true];
    
      // PodSecurityPolicy cluster role. No longer used anywhere.
      string psp_cluster_role = 11;
    
      // Configuration log level of istio-cni binary. By default, istio-cni sends all logs to the UDS server.
      // To see the logs, change global.logging.level to cni:debug.
      string logLevel = 12;
    
      // Configuration for the CNI Repair controller.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		fpstore2       = regInfo{inputs: []regMask{gpspsbg, gpg, fp}}
    		readflags      = regInfo{inputs: nil, outputs: []regMask{gp}}
    		prefreg        = regInfo{inputs: []regMask{gpspsbg}}
    	)
    	ops := []opData{
    		// binary ops
    		{name: "ADCSflags", argLength: 3, reg: gp2flags1flags, typ: "(UInt64,Flags)", asm: "ADCS", commutative: true}, // arg0+arg1+carry, set flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

     * Script plugins, via `apply(from = "script-plugin.gradle.kts")`
     * Plugins applied via <<sec:kotlin_cross_project_configuration,cross-project configuration>>
    
    You also can not use type-safe accessors in Binary Gradle plugins implemented in Kotlin.
    
    If you can't find a type-safe accessor, _fall back to using the normal API_ for the corresponding types.
    To do that, you need to know the names and/or types of the configured model elements.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "Rsqrt", "Sigmoid", "Sign", "Sinh", "Softplus", "Softsign", "Sqrt",
                "Square", "Tan", "Tanh", "Real", "Imag", "Erf", "Erfc", "Erfinv",
                "Lgamma", "Digamma",
                // Binary
                "Add", "AddV2", "Sub", "Mul", "Div", "Atan2", "Complex", "DivNoNan",
                "MulNoNan", "FloorDiv", "Xlogy", "Xlog1py", "Xdivy", "FloorMod",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    }
    
    // Packed GC pointer bitmaps, aka GC programs.
    //
    // For large types containing arrays, the type information has a
    // natural repetition that can be encoded to save space in the
    // binary and in the memory representation of the type information.
    //
    // The encoding is a simple Lempel-Ziv style bytecode machine
    // with the following instructions:
    //
    //	00000000: stop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top