Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 664 for map1 (0.04 sec)

  1. cmd/object-api-listobjects_test.go

    		}
    	}
    
    	var err error
    	testObjects := []struct {
    		parentBucket string
    		name         string
    		content      string
    		meta         map[string]string
    	}{
    		{testBuckets[0], "Asia-maps.png", "asis-maps", map[string]string{"content-type": "image/png"}},
    		{testBuckets[0], "Asia/India/India-summer-photos-1", "contentstring", nil},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

              .put(Map.class, ImmutableMap.of())
              .put(ImmutableMap.class, ImmutableMap.of())
              .put(SortedMap.class, ImmutableSortedMap.of())
              .put(ImmutableSortedMap.class, ImmutableSortedMap.of())
              .put(NavigableMap.class, Maps.unmodifiableNavigableMap(Maps.newTreeMap()))
              .put(Multimap.class, ImmutableMultimap.of())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      void UninitFunction();
    
      // Maps from an op to its control predecessors.
      llvm::SmallDenseMap<Operation*, llvm::SmallPtrSet<Operation*, 4>, 8>
          control_predecessors_;
      // Maps from an op to its control predecessors sorted in program order.
      llvm::SmallDenseMap<Operation*, llvm::SmallVector<Operation*, 4>, 8>
          sorted_control_predecessors_;
      // Maps from an op to its control successors sorted in program order.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/service.go

    	if s == nil {
    		return other == nil
    	}
    	if other == nil {
    		return s == nil
    	}
    
    	if !maps.Equal(s.Labels, other.Labels) {
    		return false
    	}
    
    	if !maps.Equal(s.LabelSelectors, other.LabelSelectors) {
    		return false
    	}
    
    	if !maps.Equal(s.ExportTo, other.ExportTo) {
    		return false
    	}
    
    	if !slices.Equal(s.Aliases, other.Aliases) {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

        private static final String COLOR_DIVIDER = "-";
    
        /**
         * Maps a {@link StyledTextOutput.Style} to the default color spec (that can be overridden by system properties)
         */
        private final Map<String, String> defaults = new HashMap<String, String>();
    
        /**
         * Maps a {@link StyledTextOutput.Style} to the {@link org.gradle.internal.logging.console.ColorMap.Color} that has been created for it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/go/doc/comment/std.go

    	"bufio",
    	"bytes",
    	"cmp",
    	"context",
    	"crypto",
    	"embed",
    	"encoding",
    	"errors",
    	"expvar",
    	"flag",
    	"fmt",
    	"hash",
    	"html",
    	"image",
    	"io",
    	"iter",
    	"log",
    	"maps",
    	"math",
    	"mime",
    	"net",
    	"os",
    	"path",
    	"plugin",
    	"reflect",
    	"regexp",
    	"runtime",
    	"slices",
    	"sort",
    	"strconv",
    	"strings",
    	"structs",
    	"sync",
    	"syscall",
    	"testing",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 671 bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = """Persistent caches on disk and cross process locking.
        | Mostly for persisting Maps to the disk.
        | Also contains implementations for in-memory caches in front of the disk cache.
    """.trimMargin()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/unique/handle.go

    	return Handle[T]{ptr}
    }
    
    var (
    	// uniqueMaps is an index of type-specific concurrent maps used for unique.Make.
    	//
    	// The two-level map might seem odd at first since the HashTrieMap could have "any"
    	// as its key type, but the issue is escape analysis. We do not want to force lookups
    	// to escape the argument, and using a type-specific map allows us to avoid that where
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/reflect/iter_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package reflect_test
    
    import (
    	"iter"
    	"maps"
    	. "reflect"
    	"testing"
    )
    
    func TestValueSeq(t *testing.T) {
    	m := map[string]int{
    		"1": 1,
    		"2": 2,
    		"3": 3,
    		"4": 4,
    	}
    	c := make(chan int, 3)
    	for i := range 3 {
    		c <- i
    	}
    	close(c)
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 14:27:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		IntDec: cbor.IntDecConvertSignedOrFail,
    
    		// Disable producing map[cbor.ByteString]interface{}, which is not acceptable for
    		// decodes into interface{}.
    		MapKeyByteString: cbor.MapKeyByteStringForbidden,
    
    		// Error on map keys that don't map to a field in the destination struct.
    		ExtraReturnErrors: cbor.ExtraDecErrorUnknownField,
    
    		// Decode maps into concrete type map[string]interface{} when the destination is an
    		// interface{}.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top