Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 184 for Commands (2.73 sec)

  1. tools/istio-iptables/pkg/log/nflog.go

    				inDev = ii.Name
    			}
    		}
    		if attrs.OutDev != nil {
    			ii, err := net.InterfaceByIndex(int(*attrs.OutDev))
    			if err == nil {
    				outDev = ii.Name
    			}
    		}
    		iptablesTrace.WithLabels(
    			"command", prefix,
    			"uid", uid,
    			"gid", gid,
    			"inDev", inDev,
    			"outDev", outDev,
    			"src", src,
    			"dst", dst,
    		).Infof(comment)
    		return 0
    	}
    
    	// Register our callback for the nflog
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/AbstractWrapperCrossVersionIntegrationTest.groovy

            }
    
            /**
             * We additionally pass the gradle user home as a system property.
             * Early gradle wrapper versions (< 1.7) don't honor the --gradle-user-home command line option correctly
             * and leaking gradle dist under test into ~/.gradle/wrapper.
             */
            if (!wrapper.wrapperSupportsGradleUserHomeCommandLineOption) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. samples/ratelimit/rate-limit-service.yaml

          labels:
            app: ratelimit
        spec:
          containers:
          - image: envoyproxy/ratelimit:9d8d70a8 # 2022/08/16
            imagePullPolicy: IfNotPresent
            name: ratelimit
            command: ["/bin/ratelimit"]
            env:
            - name: LOG_LEVEL
              value: debug
            - name: REDIS_SOCKET_TYPE
              value: tcp
            - name: REDIS_URL
              value: redis:6379
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/test-requirements.txt

    #
    # This file is autogenerated by pip-compile with Python 3.12
    # by the following command:
    #
    #    pip-compile --generate-hashes test-requirements.in
    #
    certifi==2024.2.2 \
        --hash=sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f \
        --hash=sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1
        # via requests
    charset-normalizer==3.3.2 \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildLogicIntegrationTest.groovy

                ":build-logic:jar",
                ":assemble")
            fixture.assertStateStored()
        }
    
        def "does not run build logic tasks when loaded from the cache even when the tasks are requested on the command-line"() {
            def fixture = newConfigurationCacheFixture()
    
            when:
            configurationCacheRun(":build-logic:classes")
    
            then:
            result.assertTasksExecuted(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Build scans provide insights into your build that you can use to identify and fix performance bottlenecks.
    
    In Gradle 4.3 and above, you can create a build scan using the `--scan` command line option:
    
    [listing.terminal]
    ----
    $ gradle build --scan
    ----
    
    For older Gradle versions, the
    https://docs.gradle.com/build-scan-plugin/#getting_set_up[Build Scan Plugin User Manual]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/testing/example.go

    	Name      string
    	F         func()
    	Output    string
    	Unordered bool
    }
    
    // RunExamples is an internal function but exported because it is cross-package;
    // it is part of the implementation of the "go test" command.
    func RunExamples(matchString func(pat, str string) (bool, error), examples []InternalExample) (ok bool) {
    	_, ok = runExamples(matchString, examples)
    	return ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

    fun ParametrizedWithType.profilerParam(defaultProfiler: String) {
        text(
            "profiler",
            defaultProfiler,
            display = ParameterDisplay.PROMPT,
            allowEmpty = false,
            description = "Command line option for the performance test task to enable profiling. For example `async-profiler`, `async-profiler-heap`, `async-profiler-all` or `jfr`. Use `none` for benchmarking only."
        )
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperLoggingIntegrationTest.groovy

            result.getOutputLineThatContains("10%").replaceAll("\\.+", "|") == '|10%|20%|30%|40%|50%|60%|70%|80%|90%|100%'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19585")
        def "Can configure log level with command-line Gradle property on Turkish Locale"() {
            setup:
            prepareWrapper()
    
            expect:
            wrapperExecuter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarderTest.groovy

            receiveClosed()
    
            when:
            forwarder.stop()
    
            then:
            !receivedCommand()
        }
    
        def "stream being closed without sending anything just sends close input command"() {
            when:
            forwarder.stop()
    
            then:
            receiveClosed()
        }
    
        def cleanup() {
            source.close()
            inputStream.close()
            forwarder.stop()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top