Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for Binary1 (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    When CreateSummaryDbWriter is being used, this op can be useful for
    importing data from event logs.
    
    writer: A handle to a summary writer.
    event: A string containing a binary-encoded tf.Event proto.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_SummaryWrite]>:$writer,
        TF_StrTensor:$event
      );
    
      let results = (outs);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/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: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top