Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 528 for DUMMY (0.04 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyKotlinIntegrationTest.groovy

            given:
            file("settings.gradle").delete()
            file("settings.gradle.kts") << """
                rootProject.buildFileName = "$defaultBuildFileName"
            """
    
            buildFile << """
                task("dummy")
            """
    
            and:
            def initScript = file("init.gradle") << """
                beforeSettings {
                    it.with { ${fixture.pluginManagement()} }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:40:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

            fixture.doCheckIn = false
    
            when:
            succeeds "dummy", "--scan"
    
            then:
            fixture.issuedNoPluginWarning(output)
        }
    
        def "does not warns if scan requested but no scan plugin unsupported"() {
            given:
            applyPlugin()
    
            when:
            succeeds "dummy", "--scan", "-D${DefaultGradleEnterprisePluginCheckInService.UNSUPPORTED_TOGGLE}=true"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. samples/httpbin/README.md

    image from Docker hub:
    
    ```bash
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/html
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent --head httpbin:8000/status/500
    time kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/delay/5
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/syscall/lsf_linux.go

    }
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func DetachLsf(fd int) error {
    	var dummy int
    	return setsockopt(fd, SOL_SOCKET, SO_DETACH_FILTER, unsafe.Pointer(&dummy), unsafe.Sizeof(dummy))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:27:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-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
    - 1.5K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/netlink.go

    	// UnbindAddress unbind address from the interface
    	UnbindAddress(address, devName string) error
    	// EnsureDummyDevice checks if dummy device is exist and, if not, create one.  If the dummy device is already exist, return true.
    	EnsureDummyDevice(devName string) (exist bool, err error)
    	// DeleteDummyDevice deletes the given dummy device by name.
    	DeleteDummyDevice(devName string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 19:02:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/runtime/os2_plan9.go

    	// Notes in runtimeĀ·sigtab that are handled by runtimeĀ·sigpanic.
    	_SIGRFAULT = 2
    	_SIGWFAULT = 3
    	_SIGINTDIV = 4
    	_SIGFLOAT  = 5
    	_SIGTRAP   = 6
    	_SIGPROF   = 0 // dummy value defined for badsignal
    	_SIGQUIT   = 0 // dummy value defined for sighandler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 14 18:33:38 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    	// the 'runWorker' function then picks up this dummy key and processes the changes.
    	// the goroutine terminates when 'ctx' is canceled.
    	_ = wait.PollUntilContextCancel(
    		ctx,
    		EncryptionConfigFileChangePollDuration,
    		true,
    		func(ctx context.Context) (bool, error) {
    			// add dummy item to the queue to trigger file content processing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. 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)
  10. guava-tests/benchmark/com/google/common/cache/ChainBenchmark.java

      }
    
      @SuppressWarnings("GuardedBy")
      @Benchmark
      int time(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          // TODO(b/145386688): This access should be guarded by 'this.segment', which is not currently
          // held
          segment.removeEntryFromChain(chain, head);
          dummy += segment.count;
        }
        return dummy;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:19:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top