Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 528 for DUMMY (0.07 sec)

  1. samples/tcp-echo/README.md

        ```
    
    1. Test by running the `nc` command from a `busybox` container from within the cluster.
    
        ```console
        $ kubectl run -i --rm --restart=Never dummy --image=busybox -- sh -c "echo world | nc tcp-echo 9000"
        hello world
        pod "dummy" deleted
        ```
    
        As you observe, sending _world_ on a TCP connection to the server results in
        the server prepending _hello_ and echoing back with _hello world_.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 28 07:41:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_gopkg_unstable.txt

    env GO111MODULE=on
    
    cp go.mod.empty go.mod
    go get gopkg.in/dummy.v2-unstable
    
    cp x.go.txt x.go
    cp go.mod.empty go.mod
    go list
    
    [!net:gopkg.in] skip
    [!git] skip
    
    skip  # TODO(#54503): redirect gopkg.in requests to a local server and re-enable.
    
    env GOPROXY=direct
    env GOSUMDB=off
    go get gopkg.in/macaroon-bakery.v2-unstable/bakery
    go list -m all
    stdout 'gopkg.in/macaroon-bakery.v2-unstable v2.0.0-[0-9]+-[0-9a-f]+$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 509 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/JavadocOptionFileWriterContextTest.groovy

        def writer = new StringWriter()
        @Subject context = new JavadocOptionFileWriterContext(writer)
    
        def "writes"() {
            when: context.write("dummy")
            then: writer.toString() == "dummy"
        }
    
        def "writes new line"() {
            when: context.write("a").newLine().write("b")
            then: writer.toString() == "a${SystemProperties.instance.getLineSeparator()}b"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/testdata/issue42580.go

    // Issue 42580: cmd/cgo: shifting identifier position in ast
    
    package cgotest
    
    // typedef int (*intFunc) ();
    //
    // char* strarg = "";
    //
    // int func_with_char(char* arg, void* dummy)
    // {return 5;}
    //
    // int* get_arr(char* arg, void* dummy)
    // {return NULL;}
    import "C"
    import "unsafe"
    
    // Test variables
    var (
    	checkedPointer            = []byte{1}
    	doublePointerChecked      = []byte{1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_update_unrelated_sum.txt

    # fetch a new sum.
    go mod edit -replace rsc.io/quote@v1.0.0=./dummy
    go get example.com/upgrade@v0.0.2
    ! grep '^rsc.io/quote v1.5.2 ' go.sum
    cp go.mod.orig go.mod
    cp go.sum.orig go.sum
    
    
    # Replace the new version with a directory before upgrading.
    # We can't get a sum for a directory.
    go mod edit -replace rsc.io/quote@v1.5.2=./dummy
    go get example.com/upgrade@v0.0.2
    ! grep '^rsc.io/quote v1.5.2 ' go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/assembler/plugins/AssemblerPluginTest.groovy

        }
    
        def "creates assemble tasks for each non-empty executable source set "() {
            when:
            touch("src/test/asm/dummy.s")
            touch("src/test/anotherOne/dummy.s")
            dsl {
                pluginManager.apply AssemblerPlugin
    
                model {
                    components {
                        test(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. cmd/acl-handlers.go

    	"io"
    	"net/http"
    
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // Data types used for returning dummy access control
    // policy XML, these variables shouldn't be used elsewhere
    // they are only defined to be used in this file alone.
    type grantee struct {
    	XMLNS       string `xml:"xmlns:xsi,attr"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_globals_to_ml_program.cc

            func.getArgument(i).replaceAllUsesWith(dummy.getResult());
            argsToErase.set(i);
          }
        }
        func.eraseArguments(argsToErase);
      }
    
      // Erase all the global tensors.
      for (auto globalTensor : llvm::make_early_inc_range(
               module.getOps<tf_saved_model::GlobalTensorOp>())) {
        globalTensor.erase();
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTaskOperationsTest.groovy

            given:
            def listener = Mock(ProgressListener)
            def adapter = createAdapter(listener)
    
            when:
            def taskDescriptor = Mock(InternalTaskDescriptor)
            _ * taskDescriptor.getId() >> ':dummy'
            _ * taskDescriptor.getName() >> 'some task'
            _ * taskDescriptor.getParentId() >> null
    
            def startEvent = Mock(InternalOperationStartedProgressEvent)
            _ * startEvent.getEventTime() >> 999
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java

        requests.set(0);
        misses.set(0);
      }
    
      @Benchmark
      int time(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += cache.getUnchecked(nextRandomKey());
        }
        requests.addAndGet(reps);
        return dummy;
      }
    
      private int nextRandomKey() {
        int a = random.nextInt(max);
    
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
Back to top