Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ID3 (0.03 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      auto id2 =
          StringAttr::get(&context, "//tensorflow/python/something/my_test.py");
      auto loc2 = FileLineColLoc::get(&context, id2, 0, 0);
      auto id3 = StringAttr::get(&context, "python/tensorflow/show_file.py");
      auto loc3 = FileLineColLoc::get(&context, id3, 0, 0);
    
      // These locations will be evalauted as internal frames, passing the
      // IsInternalFramesForFilenames() check so will be filtered out.
      auto id_filtered =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/deployment/internal/DefaultDeploymentRegistryTest.groovy

            registry.start("id1", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
            registry.start("id2", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
            registry.start("id3", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
    
            when:
            registry.stop()
            then:
            3 * testHandle.stop()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

          // CHECK-NEXT: "tf.Identity"
          // CHECK-SAME: {device = "/CPU:0"}
          %id2 = "tf.Identity"(%var_handle) : (!tf_res)
            -> !tf_res
          %read = "tf.ReadVariableOp"(%id2) : (!tf_res) -> tensor<32xf32>
          %id3 = "tf.Identity"(%read) : (tensor<32xf32>) -> tensor<32xf32>
          tf_executor.yield
        }
        tf_executor.fetch %island : !tf_executor.control
      }
      func.return
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  4. src/net/http/sniff.go

    	&maskedSig{
    		mask: []byte("\xFF\xFF\xFF\xFF\x00\x00\x00\x00\xFF\xFF\xFF\xFF"),
    		pat:  []byte("FORM\x00\x00\x00\x00AIFF"),
    		ct:   "audio/aiff",
    	},
    	&maskedSig{
    		mask: []byte("\xFF\xFF\xFF"),
    		pat:  []byte("ID3"),
    		ct:   "audio/mpeg",
    	},
    	&maskedSig{
    		mask: []byte("\xFF\xFF\xFF\xFF\xFF"),
    		pat:  []byte("OggS\x00"),
    		ct:   "application/ogg",
    	},
    	&maskedSig{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  5. src/net/http/sniff_test.go

    	{"JPEG image", []byte("\xFF\xD8\xFF"), "image/jpeg"},
    
    	// Audio types.
    	{"MIDI audio", []byte("MThd\x00\x00\x00\x06\x00\x01"), "audio/midi"},
    	{"MP3 audio/MPEG audio", []byte("ID3\x03\x00\x00\x00\x00\x0f"), "audio/mpeg"},
    	{"WAV audio #1", []byte("RIFFb\xb8\x00\x00WAVEfmt \x12\x00\x00\x00\x06"), "audio/wave"},
    	{"WAV audio #2", []byte("RIFF,\x00\x00\x00WAVEfmt \x12\x00\x00\x00\x06"), "audio/wave"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				},
    				{
    					ContainerID: "://id2",
    					Name:        "foo2",
    					Image:       "busybox",
    					State:       v1.ContainerState{Running: &v1.ContainerStateRunning{}},
    				},
    				{
    					ContainerID: "://id3",
    					Name:        "foo3",
    					Image:       "busybox",
    					State:       v1.ContainerState{Running: &v1.ContainerStateRunning{}},
    				},
    			},
    		},
    	}
    	status := &kubecontainer.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="0xffff" type="string" offset="0"/> <!-- V1, L1      -->
          <match value="ID3" type="string" offset="0"/>
          <!-- in the wild, 0D0A or quite a few \x00 may precede the magic -->
          <match value="(?:\\x0D\\x0A|\\x00{1,1024})(?:\\xff[\\xe3\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd\\xfe\\xff]|ID3)"
                 type="regex" offset="0"/>
        </magic>
        <glob pattern="*.mpga"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    			body:            []byte("doctype html><p>Hello</p>"),
    		},
    		{
    			name:            "empty but set content-encoding",
    			contentEncoding: "",
    			wantContentType: "audio/mpeg",
    			body:            []byte("ID3"),
    		},
    	}
    
    	for _, tt := range settings {
    		t.Run(tt.name, func(t *testing.T) {
    			cst := newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, r *Request) {
    				if tt.contentEncoding != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top