Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for biases (0.12 sec)

  1. src/cmd/go/internal/load/pkg.go

    					// more detail in most cases.
    				} else if errors.Is(r.err, imports.ErrNoGo) {
    					// ImportDir said there were files in the package, but the module
    					// loader said there weren't. Which one is right?
    					// Without this special-case hack, the TestScript/test_vet case fails
    					// on the vetfail/p1 package (added in CL 83955).
    					// Apparently, imports.ShouldBuild biases toward rejecting files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      local zone="${2}"
      local ip="${3}"
    
      local aliases
      aliases=$(gcloud compute instances describe "${name}" --project "${PROJECT}" --zone "${zone}" --flatten='networkInterfaces[0].aliasIpRanges[]' --format='value[separator=':'](networkInterfaces[0].aliasIpRanges.subnetworkRangeName,networkInterfaces[0].aliasIpRanges.ipCidrRange)' | sed 's/^://' | paste -s -d';' -)
      aliases="${aliases:+${aliases};}${ip}/32"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    	op_ED      uint32 = 0xDE00 // FORMAT_SS1        EDIT
    	op_EDMK    uint32 = 0xDF00 // FORMAT_SS1        EDIT AND MARK
    	op_EEDTR   uint32 = 0xB3E5 // FORMAT_RRE        EXTRACT BIASED EXPONENT (long DFP to 64)
    	op_EEXTR   uint32 = 0xB3ED // FORMAT_RRE        EXTRACT BIASED EXPONENT (extended DFP to 64)
    	op_EFPC    uint32 = 0xB38C // FORMAT_RRE        EXTRACT FPC
    	op_EPAIR   uint32 = 0xB99A // FORMAT_RRE        EXTRACT PRIMARY ASN AND INSTANCE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                narrow_range=False,
            )
            return {'output': out}
    
        bias = None
        if has_bias:
          bias_shape = shapes[1][-1]
          if bias_shape is not None:
            bias = array_ops.constant(
                np.random.uniform(size=[shapes[1][-1]]), dtype=dtypes.float32
            )
        model = MatmulModel(bias)
        x = array_ops.constant(
            np.random.uniform(size=x_shape), dtype=dtypes.float32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FILE_TYPE_PIPE    = 0x0003
    	FILE_TYPE_REMOTE  = 0x8000
    	FILE_TYPE_UNKNOWN = 0x0000
    )
    
    type Hostent struct {
    	Name     *byte
    	Aliases  **byte
    	AddrType uint16
    	Length   uint16
    	AddrList **byte
    }
    
    type Protoent struct {
    	Name    *byte
    	Aliases **byte
    	Proto   uint16
    }
    
    const (
    	DNS_TYPE_A       = 0x0001
    	DNS_TYPE_NS      = 0x0002
    	DNS_TYPE_MD      = 0x0003
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def MarkInputOutputAliasesPass : Pass<"tf-device-mark-input-output-aliases", "ModuleOp"> {
      let summary = "Marks device cluster inputs-output pairs that read/write to the same variable as aliases";
    
      let description = [{
        This pass analyzes the inputs and outputs to device cluster and marks those
        input-output pairs as aliases (using `tf.aliasing_output` attribute) which read
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                    //
                    // Debuggability heuristics:
                    // 1. Names that end in digits are likely to be internal aliases
                    // to the "real" names.
                    // 2. Longer names are more likely to be internal aliases.
                    //
                    // Example set of object names created by Keras for the weight
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    			oprangeset(ACSINVW, t)
    			oprangeset(ACSNEG, t)
    			oprangeset(ACSNEGW, t)
    
    		case ACINC:
    			// aliases Rm=Rn, !cond
    			oprangeset(ACINCW, t)
    			oprangeset(ACINV, t)
    			oprangeset(ACINVW, t)
    			oprangeset(ACNEG, t)
    			oprangeset(ACNEGW, t)
    
    			// aliases, Rm=Rn=REGZERO, !cond
    		case ACSET:
    			oprangeset(ACSETW, t)
    
    			oprangeset(ACSETM, t)
    			oprangeset(ACSETMW, t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    		// updated during the eviciton (due to either node resource pressure or
    		// node graceful shutdown). We do not re-generate the conditions based
    		// on the container statuses as they are added based on one-time events.
    		cType := v1.DisruptionTarget
    		if _, condition := podutil.GetPodConditionFromList(oldPodStatus.Conditions, cType); condition != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Start */
        public static final String LABELS_upgrade_start_button = "{labels.upgrade_start_button}";
    
        /** The key of the message: Update Aliases */
        public static final String LABELS_replace_aliases = "{labels.replace_aliases}";
    
        /** The key of the message: Reset Dictionaries */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
Back to top