Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 528 for DUMMY (0.04 sec)

  1. tensorflow/compiler/jit/xla_compile_util.cc

      // TODO(b/74182462): We implement this by creating a new dummy Graph including
      // _Arg nodes, and let CompileGraph walk it. This could be optimized.
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
    
      // First create the actual node we care about computing.
      TF_ASSIGN_OR_RETURN(Node * main_node, graph->AddNode(node_def));
    
      // Create dummy _Arg nodes. Link these to `node` and also via a control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

                    }
                }
                project(':b') {
                    configurations {
                        foo.attributes { attribute(arch, Arch.x86); attribute(dummy, 'dummy') }
                        bar.attributes { attribute(arch, Arch.arm64); attribute(dummy, 'dummy') }
                    }
                    task fooJar(type: Jar) {
                       archiveBaseName = 'b-foo'
                    }
                    task barJar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/core/test/test-extension/1/test-extension-1.pom

                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
      <distributionManagement>
        <repository>
          <id>dummy</id>
          <url>file:///tmp/dummy-repo</url>
        </repository>
      </distributionManagement>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/completion_test.go

    func TestNewCmdCompletion(t *testing.T) {
    	var out bytes.Buffer
    	shells := GetSupportedShells()
    	if len(shells) == 0 {
    		t.Errorf(shellsError)
    	}
    	// test newCmdCompletion with a valid shell.
    	// use a dummy parent command as newCmdCompletion needs it.
    	parentCmd := &cobra.Command{}
    	args := []string{"completion", shells[0]}
    	parentCmd.SetArgs(args)
    	cmd := newCmdCompletion(&out, "")
    	parentCmd.AddCommand(cmd)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 06 02:59:58 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

                return new ByteArrayInputStream(new byte[100]); // dummy payload
            }
        }
    
        @Test
        public void test_TmpFileHasBeenDeletedAfterResponseWasClosed() throws Exception {
            // ## Arrange ##
            CurlRequest req = new MockCurlRequest(Curl.Method.POST, "http://dummy");
            req.threshold(0); // always create tmp file
    
            // ## Act ##
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/testng-java-passing/groovy/src/main/java/org/gradle/Ok.java

    package org.gradle;
    public class Ok{
     String test = "dummy";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 63 bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Interners.java

                @SuppressWarnings("unchecked")
                E result = (E) canonical;
                return result;
              }
            }
    
            // didn't see it, trying to put it instead...
            Dummy sneaky = map.putIfAbsent(sample, Dummy.VALUE);
            if (sneaky == null) {
              return sample;
            } else {
              /* Someone beat us to it! Trying again...
               *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/encoding/json/stream_test.go

    	defer debug.SetGCPercent(percent)
    
    	// Trigger an error in Marshal with cyclic data.
    	type Dummy struct {
    		Name string
    		Next *Dummy
    	}
    	dummy := Dummy{Name: "Dummy"}
    	dummy.Next = &dummy
    
    	var buf bytes.Buffer
    	enc := NewEncoder(&buf)
    	if err := enc.Encode(dummy); err == nil {
    		t.Errorf("Encode(dummy) error: got nil, want non-nil")
    	}
    
    	type Data struct {
    		A string
    		I int
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/plugin/plugin_test.go

    			versions:    []string{"v1.0.0"},
    			shouldError: true,
    		},
    		{
    			description: "should validate the plugin",
    			handler:     newRegistrationHandler,
    			pluginName:  "this-is-a-dummy-plugin-with-a-long-name-so-it-doesnt-collide",
    			versions:    []string{"v1.3.0"},
    		},
    	} {
    		t.Run(test.description, func(t *testing.T) {
    			handler := test.handler()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

        return helper;
      }
    
      @Benchmark
      int toString(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          MoreObjects.ToStringHelper helper = newHelper();
          for (int j = 0; j < dataSize; ++j) {
            dataset.addEntries(helper);
          }
          dummy ^= helper.toString().hashCode();
        }
        return dummy;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top