Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for tag17 (0.03 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/encoding/xml/typeinfo.go

    // caused by the use of field tags with conflicting paths.
    type TagPathError struct {
    	Struct       reflect.Type
    	Field1, Tag1 string
    	Field2, Tag2 string
    }
    
    func (e *TagPathError) Error() string {
    	return fmt.Sprintf("%s field %q with tag %q conflicts with field %q with tag %q", e.Struct, e.Field1, e.Tag1, e.Field2, e.Tag2)
    }
    
    const (
    	initNilPointers     = true
    	dontInitNilPointers = false
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/suggest/settings/ElevateWordSettingsTest.java

            ElevateWord elevateWord3 = new ElevateWord("c", 100.0f, Collections.singletonList("c"), Collections.singletonList("content"),
                    Collections.singletonList("tag1"), Collections.singletonList("role1"));
    
            settings.elevateWord().add(elevateWord1);
            settings.elevateWord().add(elevateWord2);
            settings.elevateWord().add(elevateWord3);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

    optimization and deployment.
    
    ## C++ APIs
    
    ```bash
    tf-to-stablehlo-translate \
        --input-path=/path/to/model \
        [--exported-model-signatures=signature1,signature2] \
        [--tag-names=tag1,tag2] \
        [--input-arg-shapes-str=arg-name:shape,...] \
        [--e] \
        [--output-filename=/path/to/output.mlir]
    ```
    
    * `--input-path`: The path to the input TensorFlow SavedModel or MLIR module
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/rule.go

    		return p
    	}
    	return ""
    }
    
    // Tags - a rule can either have tag under <filter></filter> or under
    // <filter><and></and></filter>. This method returns all the tags from the
    // rule in the format tag1=value1&tag2=value2
    func (r Rule) Tags() string {
    	if !r.Filter.Tag.IsEmpty() {
    		return r.Filter.Tag.String()
    	}
    	if len(r.Filter.And.Tags) != 0 {
    		var buf bytes.Buffer
    		for _, t := range r.Filter.And.Tags {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top