Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for clen (0.09 sec)

  1. src/reflect/value.go

    		ds.Data = dst.ptr
    		ds.Len = dst.Len()
    		ds.Cap = ds.Len
    	} else {
    		ds = *(*unsafeheader.Slice)(dst.ptr)
    	}
    	if sk == Array {
    		ss.Data = src.ptr
    		ss.Len = src.Len()
    		ss.Cap = ss.Len
    	} else if sk == Slice {
    		ss = *(*unsafeheader.Slice)(src.ptr)
    	} else {
    		sh := *(*unsafeheader.String)(src.ptr)
    		ss.Data = sh.Data
    		ss.Len = sh.Len
    		ss.Cap = sh.Len
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

      }
    
      /**
       * Gets the value from an entry. Returns null if the entry is invalid, partially-collected,
       * loading, or expired. Unlike {@link Segment#getLiveValue} this method does not attempt to clean
       * up stale entries. As such it should only be called outside a segment context, such as during
       * iteration.
       */
      @CheckForNull
      V getLiveValue(ReferenceEntry<K, V> entry, long now) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

      }
    
      /**
       * Gets the value from an entry. Returns null if the entry is invalid, partially-collected,
       * loading, or expired. Unlike {@link Segment#getLiveValue} this method does not attempt to clean
       * up stale entries. As such it should only be called outside a segment context, such as during
       * iteration.
       */
      @CheckForNull
      V getLiveValue(ReferenceEntry<K, V> entry, long now) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    java.io.IOException; public void write(int) throws java.io.IOException; public String toString(); } org/codehaus/plexus/util/StringUtils.class package org.codehaus.plexus.util; public synchronized class StringUtils { public void StringUtils(); public static String clean(String); public static String trim(String); public static String deleteWhitespace(String); public static boolean isNotEmpty(String); public static boolean isEmpty(String); public static boolean equals(String, String); public static boolean equalsIgnoreCase(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    		{bucketName, objectName, uploadIDs[0], 2, "efgh", "1f7690ebdd9b4caf8fab49ca1757bf27", int64(len("efgh"))},
    		{bucketName, objectName, uploadIDs[0], 3, "ijkl", "09a0877d04abf8759f99adec02baf579", int64(len("abcd"))},
    		{bucketName, objectName, uploadIDs[0], 4, "mnop", "e132e96a5ddad6da8b07bba6f6131fef", int64(len("abcd"))},
    		// Part with size larger than 5 MiB.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      auto& object_graph = saved_model->meta_graph_def().object_graph_def();
      ObjectNames object_names(object_graph, exported_names);
    
      // Clean up a couple func's that always seem to be present when importing a
      // SavedModel. This is not strictly needed, as there is a separate pass that
      // will clean them up, but this makes staring at the raw IR of minimal
      // examples quite a bit nicer.
      for (auto func :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

      |   in as many languages as possible. (see MNG-3626)
      |
      | o annotation mechanism so that changes to the model can be accurately tracked.
      |
      | o need to clean up all the descriptions, matching anything to the current project-descriptor.xml file and
      |   improving on that
      |
      | o use enums where appropriate (eg dependency scope)
      |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		case 0x6:
    			len = 2 // three registers
    		case 0x2:
    			len = 3 // four registers
    		default:
    			c.ctxt.Diag("invalid register numbers in ARM64 register list: %v", p)
    		}
    		var op uint32
    		switch p.As {
    		case AVTBL:
    			op = 0
    		case AVTBX:
    			op = 1
    		}
    		o1 = q<<30 | 0xe<<24 | len<<13 | op<<12
    		o1 |= (uint32(rf&31) << 16) | uint32(offset&31)<<5 | uint32(rt&31)
    
    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. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            vector_segments[j] = segments[j];
          }
          tflite::SparseIndexVector segments_type;
          BufferOffset<void> array_segments;
          // The segment array is sorted.
          // TODO(b/147449640): Clean this up with util functions.
          int max_of_segments = vector_segments[segments.size() - 1];
          if (max_of_segments <= UINT8_MAX) {
            segments_type = tflite::SparseIndexVector_Uint8Vector;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	// monotonically and existing entries never change, so we can
    	// simply return a copy of the slice header. For added safety,
    	// we trim everything past len because that can still change.
    	return allgs[:len(allgs):len(allgs)]
    }
    
    // atomicAllG returns &allgs[0] and len(allgs) for use with atomicAllGIndex.
    func atomicAllG() (**g, uintptr) {
    	length := atomic.Loaduintptr(&allglen)
    	ptr := (**g)(atomic.Loadp(unsafe.Pointer(&allgptr)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top