Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for tag17 (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. README.md

    ```
    
    ### Add suggest document
    
    ```java
    String[][] readings = new String[2][];
    readings[0] = new String[] { "kensaku", "fuga" };
    readings[1] = new String[] { "enjin", "fuga" };
    String[] tags = new String[] { "tag1", "tag2" };
    String[] roles = new String[] { "role1", "role2", "role3" };
    suggester.indexer().index(new SuggestItem(new String[] { "検索", "エンジン" }, readings, 1, tags, roles, SuggestItem.Kind.DOCUMENT));
    ```
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Jan 19 03:33:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. README.ja.md

      );
    ```
    
    ### サジェストドキュメントの登録
    
    ```java
    String[][] readings = new String[2][];
    readings[0] = new String[] { "kensaku", "fuga" };
    readings[1] = new String[] { "enjin", "fuga" };
    String[] tags = new String[] { "tag1", "tag2" };
    String[] roles = new String[] { "role1", "role2", "role3" };
    suggester.indexer().index(new SuggestItem(new String[] { "検索", "エンジン" }, readings, 1, tags, roles, SuggestItem.Kind.DOCUMENT));
    ```
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Jul 27 10:00:55 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java

                    createDefaultReadingConverter(), createDefaultNormalizer());
            SuggestItem item = items.get(0);
            assertEquals("検索エンジン", item.getText());
            assertEquals("tag1", item.getTags()[0]);
            assertEquals("role1", item.getRoles()[0]);
        }
    
        protected ReadingConverter createDefaultReadingConverter() throws IOException {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top