Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 168 for reachable (0.17 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReport.out

        | org.gradle.jvm.version         |          | 11           |
    
    org.slf4j:slf4j-log4j12:1.6.1
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/options/globalflags.go

    	// Adds flags from k8s.io/apiserver/pkg/admission.
    	globalflag.Register(fs, "default-not-ready-toleration-seconds")
    	globalflag.Register(fs, "default-unreachable-toleration-seconds")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 07:44:58 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/const.go

    			case Uint16:
    				const s = 16
    				return 0 <= x && x <= 1<<s-1
    			case Uint32:
    				const s = 32
    				return 0 <= x && x <= 1<<s-1
    			case Uint64:
    				return 0 <= x
    			default:
    				panic("unreachable")
    			}
    		}
    		// x does not fit into int64
    		switch n := constant.BitLen(x); typ.kind {
    		case Uint, Uintptr:
    			var s = uint(sizeof(typ)) * 8
    			return constant.Sign(x) >= 0 && n <= int(s)
    		case Uint64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemId.java

    @Incubating
    public interface ProblemId {
    
        /**
         * The name of the problem group.
         *
         * @return the label
         * @since 8.9
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
         * @return the display name
         * @since 8.9
         */
        String getDisplayName();
    
        /**
         * Returns the container  group.
         *
         * @return the group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 10:17:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. hack/verify-licenses.sh

    awk '{ printf "%-100s : %-20s : %s\n", $1, $2, $3 }' "${ARTIFACTS}"/approved_licenses.dump
    
    
    if [[ ${#packages_url_missing[@]} -gt 0 ]]; then
        echo -e '\n[ERROR] The following go-packages in the project have unknown or unreachable license URL:'
        awk '{ printf "%-100s :  %-20s : %s\n", $1, $2, $3 }' "${ARTIFACTS}"/approved_licenses_with_missing_urls.dump
        exit_code=1
    fi
    
    
    if [[ ${#packages_flagged[@]} -gt 0 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemId.java

     *
     * @since 8.8
     */
    @Incubating
    public interface ProblemId {
    
        /**
         * The name of the problem.
         *
         * @since 8.8
         */
        String getName();
    
        /**
         * A human-readable label describing the problem ID.
         *
         * @since 8.8
         */
        String getDisplayName();
    
        /**
         * The parent group.
         *
         * @since 8.8
         */
        ProblemGroup getGroup();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:38:33 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         *
         * @param name the name of the problem. As a convention kebab-case-formatting should be used.
         * @param displayName a human-readable representation of the problem, free of any contextual information.
         * @return this
         * @since 8.8
         */
        ProblemSpec id(String name, String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/go/types/const.go

    			case Uint16:
    				const s = 16
    				return 0 <= x && x <= 1<<s-1
    			case Uint32:
    				const s = 32
    				return 0 <= x && x <= 1<<s-1
    			case Uint64:
    				return 0 <= x
    			default:
    				panic("unreachable")
    			}
    		}
    		// x does not fit into int64
    		switch n := constant.BitLen(x); typ.kind {
    		case Uint, Uintptr:
    			var s = uint(sizeof(typ)) * 8
    			return constant.Sign(x) >= 0 && n <= int(s)
    		case Uint64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/flagdefs.go

    	"stdversion":       true,
    	"stringintconv":    true,
    	"structtag":        true,
    	"testinggoroutine": true,
    	"tests":            true,
    	"timeformat":       true,
    	"unmarshal":        true,
    	"unreachable":      true,
    	"unsafeptr":        true,
    	"unusedresult":     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/go/types/gcsizes.go

    		assert(!isTypeParam(T))
    		return s.WordSize
    	case *Basic:
    		// Strings are like slices and interfaces.
    		if t.Info()&IsString != 0 {
    			return s.WordSize
    		}
    	case *TypeParam, *Union:
    		panic("unreachable")
    	}
    	a := s.Sizeof(T) // may be 0 or negative
    	// spec: "For a variable x of any type: unsafe.Alignof(x) is at least 1."
    	if a < 1 {
    		return 1
    	}
    	// complex{64,128} are aligned like [2]float{32,64}.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top