Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for Mean (0.07 sec)

  1. cmd/xl-storage-format-v2.go

    // its contents and false otherwise.
    func (x xlMetaV2VersionHeader) UsesDataDir() bool {
    	return x.Flags&xlFlagUsesDataDir != 0
    }
    
    // InlineData returns whether inline data has been set.
    // Note that false does not mean there is no inline data,
    // only that it is unlikely.
    func (x xlMetaV2VersionHeader) InlineData() bool {
    	return x.Flags&xlFlagInlineData != 0
    }
    
    // signatureErr is a signature returned when an error occurs.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    			if !reflect.DeepEqual(tt.ptr, v.Interface()) {
    				// There's no reason for ptr to point to non-zero data,
    				// as we decode into new(right-type), so the data is
    				// discarded.
    				// This can easily mean tests that silently don't test
    				// what they should. To test decoding into existing
    				// data, see TestPrefilled.
    				t.Fatalf("%s: unmarshalTest.ptr %#v is not a pointer to a zero value", tt.Where, tt.ptr)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    		modfetch.GoSumFile = strings.TrimSuffix(modFilePath(modRoots[0]), ".mod") + ".sum"
    	}
    	if len(modRoots) == 0 {
    		// TODO(#49228): Instead of creating a fake module with an empty modroot,
    		// make MainModules.Len() == 0 mean that we're in module mode but not inside
    		// any module.
    		mainModule := module.Version{Path: "command-line-arguments"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    		atomic.AddUint64(&globalNetPerfRX.RX, uint64(n))
    		if err != nil && err != io.EOF {
    			// If there is a disconnection before globalNetPerfMinDuration (we give a margin of error of 1 sec)
    			// would mean the network is not stable. Logging here will help in debugging network issues.
    			if time.Since(connectTime) < (globalNetPerfMinDuration - time.Second) {
    				peersLogIf(ctx, err)
    			}
    		}
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        )
    
    # TODO(b/203493652): implement the "rename_to" for the customization in
    # tensorflow/core/api_def/base_api/*
    # {op_name: {API's attribute name: OpDef's attribute name}}
    _ATTRIBUTE_RENAMES = {
        'Mean': {'axis': 'reduction_indices'},
        'Split': {'axis': 'split_dim'},
        'SplitV': {'axis': 'split_dim'},
    }
    
    
    def _get_type_from_proto(arg_def=None, attr_def=None):
      if not arg_def:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

     * Implementations are strongly encouraged to be side-effect-free and immutable.
     *
     * <p>Throughout the documentation of this class, the phrase "matching character" is used to mean
     * "any {@code char} value {@code c} for which {@code this.matches(c)} returns {@code true}".
     *
     * <p><b>Warning:</b> This class deals only with {@code char} values, that is, <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/CharMatcher.java

     * Implementations are strongly encouraged to be side-effect-free and immutable.
     *
     * <p>Throughout the documentation of this class, the phrase "matching character" is used to mean
     * "any {@code char} value {@code c} for which {@code this.matches(c)} returns {@code true}".
     *
     * <p><b>Warning:</b> This class deals only with {@code char} values, that is, <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        return true;
                    } else {
                        //partial match
    
                        // At this point we know that we have a match for pname. This may
                        // mean, that name[pname.length()..<-1] is a static inner class.
                        // For this the rest of the name does not need any dots in its name.
                        // It is either completely a inner static class or it is not.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/time/format.go

    			// Ugly special case. We cheat and take the "Z" variants
    			// to mean "the time zone as formatted for ISO 8601".
    			if offset == 0 && (std == stdISO8601TZ || std == stdISO8601ColonTZ || std == stdISO8601SecondsTZ || std == stdISO8601ShortTZ || std == stdISO8601ColonSecondsTZ) {
    				b = append(b, 'Z')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller_test.go

    	// nil should be returned when the service doesn't exist
    	assert.Nil(t, err, "Expected no error syncing service")
    
    	// That should mean no client actions were performed
    	assert.Len(t, client.Actions(), 0)
    
    	// TriggerTimeTracker should have removed the reference to the missing service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top