Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,335 for look (0.04 sec)

  1. pkg/probe/util.go

    	}
    	if port > 0 && port < 65536 {
    		return port, nil
    	}
    	return port, fmt.Errorf("invalid port number: %v", port)
    }
    
    // findPortByName is a helper function to look up a port in a container by name.
    func findPortByName(container *v1.Container, portName string) (int, error) {
    	for _, port := range container.Ports {
    		if port.Name == portName {
    			return int(port.ContainerPort), nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 16:51:52 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.install.gradle.kts

            if (libDir.list()?.any { it.matches(Regex("^gradle.*\\.jar")) } == true) {
                return@also
            }
        }
    
        throw RuntimeException("Install directory $dir does not look like a Gradle installation. Cannot delete it to install.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 07:17:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue48008.go

    	}
    }
    
    // Make sure a parenthesized nil is ok.
    
    func _(x interface{}) {
    	switch x.(type) {
    	case ((nil)), int:
    	}
    }
    
    // Make sure we look for the predeclared nil.
    
    func _(x interface{}) {
    	type nil int
    	switch x.(type) {
    	case nil: // ok - this is the type nil
    	}
    }
    
    func _(x interface{}) {
    	var nil int
    	switch x.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependencyCapabilitiesHandler.java

    /**
     * The capabilities requested for a dependency. This is used in variant-aware dependency
     * management, to select only variants which provide the requested capabilities. By
     * default, Gradle will only look for variants which provide the "implicit" capability,
     * which corresponds to the GAV coordinates of the component. If the user calls methods
     * on this handler, then the requirements change and explicit capabilities are required.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 17:57:43 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/api/services/model/RootLocator.java

     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
     * The default implementation will look for a {@code .mvn} child directory
     * or a {@code pom.xml} containing the {@code root="true"} attribute.
     */
    public interface RootLocator {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolContainingDeclarationProvider.kt

        /**
         * Returns containing JVM class name for [KaCallableSymbol]
         *
         *   even for deserialized callables! (which is useful to look up the containing facade in [PsiElement])
         *   for regular, non-local callables from source, it is a mere conversion of [ClassId] inside [CallableId]
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/config/types.go

    	// pods in horizontal pod autoscaler.
    	HorizontalPodAutoscalerSyncPeriod metav1.Duration
    	// HorizontalPodAutoscalerDowncaleStabilizationWindow is a period for which autoscaler will look
    	// backwards and not scale down below any recommendation it made during that period.
    	HorizontalPodAutoscalerDownscaleStabilizationWindow metav1.Duration
    	// horizontalPodAutoscalerTolerance is the tolerance for when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. cluster/kubectl.sh

        {
          echo "It looks as if you don't have a compiled kubectl binary"
          echo
          echo "If you are running from a clone of the git repo, please run"
          echo "'./build/run.sh make cross'. Note that this requires having"
          echo "Docker installed."
          echo
          echo "If you are running from a binary release tarball, something is wrong. "
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 06 18:03:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/syslist.go

    package modindex
    
    // knownOS is the list of past, present, and future known GOOS values.
    // Do not remove from this list, as it is used for filename matching.
    // If you add an entry to this list, look at unixOS, below.
    var knownOS = map[string]bool{
    	"aix":       true,
    	"android":   true,
    	"darwin":    true,
    	"dragonfly": true,
    	"freebsd":   true,
    	"hurd":      true,
    	"illumos":   true,
    	"ios":       true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 01:45:58 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/text/template/examplefunc_test.go

    import (
    	"log"
    	"os"
    	"strings"
    	"text/template"
    )
    
    // This example demonstrates a custom function to process template text.
    // It installs the strings.Title function and uses it to
    // Make Title Text Look Good In Our Template's Output.
    func ExampleTemplate_func() {
    	// First we create a FuncMap with which to register the function.
    	funcMap := template.FuncMap{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
Back to top