Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,835 for runes (0.04 sec)

  1. hack/e2e-node-test.sh

    # limitations under the License.
    
    # This script is a vestigial redirection.  Please do not add "real" logic.
    # The "true" target of this makerule is `hack/make-rules/test-e2e-node.sh`.
    
    # This script runs `make test-e2e-node` command.
    # The command builds and runs node end-to-end tests.
    # Args:
    #  FOCUS: Regexp that matches the tests to be run.  Defaults to "".
    #  SKIP: Regexp that matches the tests that needs to be skipped.  Defaults
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  2. hack/benchmark-go.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script runs `make test` command with some args for benchmark test.
    # The "true" target of this makerule is `hack/make-rules/test.sh`.
    # Args:
    #   WHAT: Directory names to test.  All *_test.go files under these
    #     directories will be run.  If not specified, "everything" will be tested.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  3. cluster/addons/dns/nodelocaldns/README.md

    # Nodelocal DNS Cache
    
    Using NodeLocal DNSCache in Kubernetes clusters(https://kubernetes.io/docs/tasks/administer-cluster/nodelocaldns/).
    This addon runs a node-local-dns pod on all cluster nodes. The pod runs CoreDNS as the dns cache. It runs with `hostNetwork:True` and creates a dedicated dummy interface with a link local ip(169.254.20.10/32 by default) to listen for DNS queries. The cache instances connect to clusterDNS in case of cache misses.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. mockwebserver-junit4/src/main/kotlin/mockwebserver3/junit4/MockWebServerRule.kt

    import java.io.IOException
    import java.util.logging.Level
    import java.util.logging.Logger
    import mockwebserver3.MockWebServer
    import okhttp3.ExperimentalOkHttpApi
    import org.junit.rules.ExternalResource
    
    /**
     * Runs MockWebServer for the duration of a single test method.
     *
     * In Java JUnit 4 tests (ie. tests annotated `@org.junit.Test`), use this by defining a field with
     * the `@Rule` annotation:
     *
     * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 150 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

            UNRESOLVED,
            BUILD_DEPENDENCIES_RESOLVED,
            GRAPH_RESOLVED,
    
            // This state should be removed, but it is referenced by nebula gradle-resolution-rules-plugin.
            // https://github.com/nebula-plugins/gradle-resolution-rules-plugin/blob/623bbbcd4f187101bc233e46c4d9ec960c02e1a7/src/main/kotlin/nebula/plugin/resolutionrules/configurations.kt#L62
            @Deprecated
            ARTIFACTS_RESOLVED
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. pilot/test/xdstest/test.go

    	case *listener.ListenerFilterChainMatchPredicate_NotMatch:
    		return !EvaluateListenerFilterPredicates(r.NotMatch, port)
    	case *listener.ListenerFilterChainMatchPredicate_OrMatch:
    		matches := false
    		for _, r := range r.OrMatch.Rules {
    			matches = matches || EvaluateListenerFilterPredicates(r, port)
    		}
    		return matches
    	case *listener.ListenerFilterChainMatchPredicate_DestinationPortRange:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 29 21:47:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. tools/istio-clean-iptables/pkg/cmd/root.go

    	cmd := &cobra.Command{
    		Use:   "istio-clean-iptables",
    		Short: "Clean up iptables rules for Istio Sidecar",
    		Long:  "Script responsible for cleaning up iptables rules",
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    			if err := log.Configure(logOpts); err != nil {
    				return err
    			}
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			cfg.FillConfigFromEnvironment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tools/istio-clean-iptables/pkg/cmd/cleanup.go

    	chains = []string{constants.ISTIOREDIRECT, constants.ISTIOINREDIRECT}
    	flushAndDeleteChains(ext, iptV, constants.NAT, chains)
    }
    
    // cleanupDNSUDP removes any IPv4/v6 UDP rules.
    // TODO BML drop `HandleDSNUDP` and friends, no real need to tread UDP rules specially
    // or create unique abstractions for them
    func cleanupDNSUDP(cfg *config.Config, ext dep.Dependencies, iptV, ipt6V *dep.IptablesVersion) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/html/template/css.go

    }
    
    // hexDecode decodes a short hex digit sequence: "10" -> 16.
    func hexDecode(s []byte) rune {
    	n := '\x00'
    	for _, c := range s {
    		n <<= 4
    		switch {
    		case '0' <= c && c <= '9':
    			n |= rune(c - '0')
    		case 'a' <= c && c <= 'f':
    			n |= rune(c-'a') + 10
    		case 'A' <= c && c <= 'F':
    			n |= rune(c-'A') + 10
    		default:
    			panic(fmt.Sprintf("Bad hex digit in %q", s))
    		}
    	}
    	return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top