Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 241 for Dummy4 (0.11 sec)

  1. cmd/dummy-handlers.go

    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // Data types used for returning dummy tagging XML.
    // These variables shouldn't be used elsewhere.
    // They are only defined to be used in this file alone.
    
    // GetBucketWebsite  - GET bucket website, a dummy api
    func (api objectAPIHandlers) GetBucketWebsiteHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "GetBucketWebsite")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/syscall/js/js_test.go

    		t.Errorf("got %#v, want %#v", got, want)
    	}
    }
    
    func TestEqual(t *testing.T) {
    	if !dummys.Get("someFloat").Equal(dummys.Get("someFloat")) {
    		t.Errorf("same float is not equal")
    	}
    	if !dummys.Get("emptyObj").Equal(dummys.Get("emptyObj")) {
    		t.Errorf("same object is not equal")
    	}
    	if dummys.Get("someFloat").Equal(dummys.Get("someInt")) {
    		t.Errorf("different values are not unequal")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. src/encoding/json/bench_test.go

    	// Trigger an error in Marshal with cyclic data.
    	type Dummy struct {
    		Name string
    		Next *Dummy
    	}
    	dummy := Dummy{Name: "Dummy"}
    	dummy.Next = &dummy
    
    	b.RunParallel(func(pb *testing.PB) {
    		enc := NewEncoder(io.Discard)
    		for pb.Next() {
    			if err := enc.Encode(&codeStruct); err != nil {
    				b.Fatalf("Encode error: %v", err)
    			}
    			if _, err := Marshal(dummy); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/client_test.go

    			req := &drapbv1alpha3.NodePrepareResourcesRequest{
    				Claims: []*drapbv1alpha3.Claim{
    					{
    						Namespace:      "dummy-namespace",
    						Uid:            "dummy-uid",
    						Name:           "dummy-claim",
    						ResourceHandle: "dummy-resource",
    					},
    				},
    			}
    			client.NodePrepareResources(context.TODO(), req)
    
    			client.(*plugin).Lock()
    			conn := client.(*plugin).conn
    			client.(*plugin).Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginMultiProjectTest.groovy

        def "configures checkstyle extension to read config from root project in a single project build"() {
            given:
            buildFile << javaProjectUsingCheckstyle()
            file('src/main/java/Dummy.java') << javaClassWithNewLineAtEnd()
            file('config/checkstyle/checkstyle.xml') << simpleCheckStyleConfig()
    
            expect:
            succeeds('checkstyleMain')
            checkStyleReportFile(testDirectory).assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:39:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyClasspathIntegrationTest.groovy

                }
            """
    
            file('src/dummy-input.txt') << "dummy text"
    
            buildFile << """
                task cacheableTask {
                    def inputFile = file("src/dummy-input.txt")
                    def outputDir = file(layout.buildDirectory.dir("dummy-output"))
                    def outputFile = file(layout.buildDirectory.file("dummy-output/result.txt"))
    
                    outputs.cacheIf { true }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:43:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/shape_inference_test.cc

        auto enter =
            ops::internal::Enter(scope.WithOpName("while/Enter"), x, "aloop");
        auto dummy = ops::Placeholder(scope.WithOpName("dummy"), DT_RESOURCE);
        auto merge = ops::Merge(scope.WithOpName("while/Merge"),
                                std::initializer_list<Input>{enter, dummy});
        auto false_value = ops::Const<bool>(scope.WithOpName("false"), false);
        auto loop_cond =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/BuildTestFixture.groovy

            rootMulti.file("src/main/${language.name}/Dummy.${language.name}") << "public class Dummy {}"
            subprojects.each {
                rootMulti.file(it.replace(':' as char, File.separatorChar), "src/main/${language.name}/Dummy.${language.name}") << "public class Dummy {}"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    template <typename T>
    class TypeIdHelper {
     public:
      // dummy_ must not have a const type.  Otherwise an overly eager
      // compiler (e.g. MSVC 7.1 & 8.0) may try to merge
      // TypeIdHelper<T>::dummy_ for different Ts as an "optimization".
      static bool dummy_;
    };
    
    template <typename T>
    bool TypeIdHelper<T>::dummy_ = false;
    
    // GetTypeId<T>() returns the ID of type T.  Different values will be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/dryrun/dryrun.go

    func NewWaiter() apiclient.Waiter {
    	return &Waiter{}
    }
    
    // WaitForControlPlaneComponents just returns a dummy nil, to indicate that the program should just proceed
    func (w *Waiter) WaitForControlPlaneComponents(cfg *kubeadmapi.ClusterConfiguration) error {
    	return nil
    }
    
    // WaitForAPI just returns a dummy nil, to indicate that the program should just proceed
    func (w *Waiter) WaitForAPI() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top