Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 193 for EG (0.03 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultWorkInProgressFormatter.java

            int cols = consoleMetaData.getCols();
            if (cols > 0) {
                maxWidth = cols - 1;
            } else {
                // Assume 80 wide. This is to minimize wrapping on console where we don't know the width (eg mintty)
                // It's not intended to be a correct solution, simply a work around
                maxWidth = 79;
            }
            if (maxWidth < formattedString.length()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/ComponentIdentifierParserFactory.java

                String[] parts = notation.split(":");
                if (parts.length != 3) {
                    throw new InvalidUserDataException("Invalid module component notation: " + notation + " : must be a valid 3 part identifier, eg.: org.gradle:gradle:1.0");
                }
                return DefaultModuleComponentIdentifier.newId(
                    DefaultModuleIdentifier.newId(validate(parts[0].trim(), notation), validate(parts[1].trim(), notation)),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/base/public/runtime.h

    // object through tensorflow::cc::RuntimeBuilder::Build, after setting any
    // relevant configuration options. Many Tensorflow functions take a reference to
    // the runtime as an argument (eg: tensorflow::cc::SavedModelAPI::Load), and
    // may have different implementations depending on the runtime. For many of
    // these Runtime-attached objects (such as tensorflow::cc::TensorHandle), the
    // Runtime must outlive these objects.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/c/tf_datatype.h

      TF_INT4 = 29,
      TF_UINT4 = 30,
    } TF_DataType;
    
    // TF_DataTypeSize returns the sizeof() for the underlying type corresponding
    // to the given TF_DataType enum value. Returns 0 for variable length types
    // (eg. TF_STRING) or on failure.
    TF_CAPI_EXPORT extern size_t TF_DataTypeSize(TF_DataType dt);
    
    #ifdef __cplusplus
    } /* end extern "C" */
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BeanCodec.kt

                }
            }
    
        private
        suspend fun WriteContext.writeBeanOf(beanType: Class<*>, value: Any) {
            writeClass(beanType)
            // TODO - should collect the details of the decoration (eg enabled annotations, etc), and also carry this information with the serialized class reference
            //  instead of separately for each bean
            val generated = value is GeneratedSubclass
            writeBoolean(generated)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. cmd/httprange.go

    	}
    
    	// Trim byte range prefix.
    	byteRangeString := strings.TrimPrefix(rangeString, byteRangePrefix)
    
    	// Check if range string contains delimiter '-', else return error. eg. "bytes=8"
    	sepIndex := strings.Index(byteRangeString, "-")
    	if sepIndex == -1 {
    		return nil, fmt.Errorf("'%s' does not have a valid range value", rangeString)
    	}
    
    	offsetBeginString := byteRangeString[:sepIndex]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

        op_key: The unique key to identify this op.
        num_args: The number of inputs.
        device: The tensorflow device. eg. "/CPU:0"
        op_attrs: The tensorflow attributes excluding the func attrs.
        op_name: The tensorflow op name. eg. "tf.AddV2"
    
        Example:
          tfrt_fallback_sync.createop() key(0) device("/CPU:0")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. tools/certs/common.mk

    INTERMEDIATE_SAN_DNS ?= istiod.istio-system.svc
    # Additional variables are defined in %/intermediate.conf target below.
    
    #------------------------------------------------------------------------
    # variables: workload certs: eg VM
    WORKLOAD_DAYS ?= 1
    SERVICE_ACCOUNT ?= default
    WORKLOAD_CN ?= Workload
    
    #------------------------------------------------------------------------
    # variables: files to clean
    FILES_TO_CLEAN+=k8s-root-cert.pem \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    //
    // Eg 1. An update in canonical form:
    //  * indices shape(A,B,C)
    //  * updates shape(A,B,D,E,F)
    // Then:
    //  * D,E,F are the update window dims [2,3,4]
    //  * C is the index vector dimension
    //  * A,B iterate over the updates and indices
    //
    // If `update_window_dims` are not the trailing dimensions then updates must be
    // transposed.
    //
    // Eg 2. An update in non-canonical form:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. tests/integration/pilot/cross_revision_test.go

    // This allows a conformance-style tests against existing installations in the cluster.
    // The test is completely skipped if ISTIO_TEST_EXTRA_REVISIONS is not set
    // To run, add each revision to test. eg `ISTIO_TEST_EXTRA_REVISIONS=canary,my-rev`.
    func TestRevisionTraffic(t *testing.T) {
    	rawExtraRevs, f := os.LookupEnv("ISTIO_TEST_EXTRA_REVISIONS")
    	if !f {
    		t.Skip("ISTIO_TEST_EXTRA_REVISIONS not specified")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top