Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for tag18 (0.04 sec)

  1. src/encoding/json/decode_test.go

    	Float64:    15.1,
    	Foo:        "foo",
    	Foo2:       "foo2",
    	IntStr:     42,
    	UintptrStr: 44,
    	String:     "16",
    	Map: map[string]Small{
    		"17": {Tag: "tag17"},
    		"18": {Tag: "tag18"},
    	},
    	MapP: map[string]*Small{
    		"19": {Tag: "tag19"},
    		"20": nil,
    	},
    	EmptyMap:    map[string]Small{},
    	Slice:       []Small{{Tag: "tag20"}, {Tag: "tag21"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. pkg/kubelet/util/sliceutils/sliceutils_test.go

    		}
    	}
    }
    
    func buildByImageSize() ByImageSize {
    	return []kubecontainer.Image{
    		{
    			ID:          "1",
    			RepoTags:    []string{"foo-tag11", "foo-tag12"},
    			RepoDigests: []string{"foo-rd11", "foo-rd12"},
    			Size:        1,
    		},
    		{
    			ID:          "2",
    			RepoTags:    []string{"foo-tag21", "foo-tag22"},
    			RepoDigests: []string{"foo-rd21", "foo-rd22"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. test/switch7.go

    	case fmt.Stringer:
    	case fmt.Stringer: // ERROR "duplicate case fmt.Stringer in type switch"
    	case struct {
    		i int "tag1"
    	}:
    	case struct {
    		i int "tag2"
    	}:
    	case struct { // ERROR "duplicate case struct { i int .tag1. } in type switch|duplicate case"
    		i int "tag1"
    	}:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 796 bytes
    - Viewed (0)
  4. tensorflow/c/kernels/summary_op_test.cc

      Tensor values(DT_FLOAT, {vectorSize});
      tags.vec<tstring>()(0) = "tag1";
      tags.vec<tstring>()(1) = "tag2";
      tags.vec<tstring>()(2) = "tag3";
      values.vec<float>()(0) = 1.0f;
      values.vec<float>()(1) = -0.73f;
      values.vec<float>()(2) = 10000.0f;
      TestScalarSummaryOp(&tags, &values, R"(
                          value { tag: 'tag1' simple_value: 1.0 }
                          value { tag: 'tag2' simple_value: -0.73}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 18 15:10:51 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_build_tags.txt

    go list -f {{.GoFiles}} -tags tag1
    stdout '\[x.go\]'
    
    go list -f {{.GoFiles}} -tags tag2
    stdout '\[y\.go\]'
    
    go list -f {{.GoFiles}} -tags 'tag1 tag2'
    stdout '\[x\.go y\.go\]'
    
    go list -f {{.GoFiles}} -tags tag1,tag2 # commas allowed as of Go 1.13
    stdout '\[x\.go y\.go\]'
    
    -- x/go.mod --
    module x
    
    -- x/x.go --
    // +build tag1
    
    package y
    
    -- x/y.go --
    // +build tag2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:25:19 UTC 2019
    - 538 bytes
    - Viewed (0)
  6. tests/multi_primary_keys_test.go

    		Tags: []Tag{
    			{Locale: "ZH", Value: "tag1"},
    			{Locale: "ZH", Value: "tag2"},
    		},
    	}
    
    	DB.Save(&blog)
    	if !compareTags(blog.Tags, []string{"tag1", "tag2"}) {
    		t.Fatalf("Blog should has two tags")
    	}
    
    	// Append
    	tag3 := &Tag{Locale: "ZH", Value: "tag3"}
    	DB.Model(&blog).Association("Tags").Append([]*Tag{tag3})
    
    	if !compareTags(blog.Tags, []string{"tag1", "tag2", "tag3"}) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_tags_no_comma.txt

    [compiler:gccgo] skip 'gccgo has no standard packages'
    go build -tags 'tag1 tag2' math
    ! go build -tags 'tag1,tag2 tag3' math
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 170 bytes
    - Viewed (0)
  8. src/test/resources/org/codelibs/core/xml/test1.xml

    <?xml version="1.0" encoding="Shift_JIS"?>
    
    <tag1 attr1="aaa" attr2="bbb">
      111
      222
      <tag2>c c </tag2>
      <tag2>ddd</tag2>
      <tag3>
        <tag4>eee</tag4>
        <tag5>ddd</tag5>
      </tag3>
      333
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Sun Dec 28 09:01:06 UTC 2014
    - 200 bytes
    - Viewed (0)
  9. tests/embedded_struct_test.go

    			t.Errorf("Failed to auto migrate advanced user, got error %v", err)
    		}
    	}
    }
    
    func TestEmbeddedTagSetting(t *testing.T) {
    	type Tag1 struct {
    		Id int64 `gorm:"autoIncrement"`
    	}
    	type Tag2 struct {
    		Id int64
    	}
    
    	type EmbeddedTag struct {
    		Tag1 Tag1 `gorm:"Embedded;"`
    		Tag2 Tag2 `gorm:"Embedded;EmbeddedPrefix:t2_"`
    		Name string
    	}
    
    	DB.Migrator().DropTable(&EmbeddedTag{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/lifecycle_test.go

    			objectName:     "foodir/fooobject",
    			objectTags:     "tag1=value1&tag2=value2",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top