Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,341 for longerst (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	// OpenAPI duration strings follow RFC 3339, section 5.6 - see the comment on maxDatetimeSizeJSON
    	MaxDurationSizeJSON = 32
    	// MaxDatetimeSizeJSON
    	// OpenAPI datetime strings follow RFC 3339, section 5.6, and the longest possible
    	// such string is 9999-12-31T23:59:59.999999999Z, which has length 30 - we add 2
    	// to allow for quotation marks
    	MaxDatetimeSizeJSON = 32
    	// MinDurationSizeJSON
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. test/return.go

    		break
    	}
    } // ERROR "missing return"
    
    func _() int {
    L:
    	for {
    		for {
    			break L
    		}
    	}
    } // ERROR "missing return"
    
    // if there's a condition - even "true" - the loops are no longer syntactically terminating
    
    func _() int {
    	print(1)
    	for x == nil {}
    } // ERROR "missing return"
    
    func _() int {
    	for x == nil {
    		for {
    			break
    		}
    	}
    } // ERROR "missing return"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 32.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta1/zz_generated.prerelease-lifecycle.go

    	return schema.GroupVersionKind{Group: "apps", Version: "v1", Kind: "ControllerRevision"}
    }
    
    // APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or  "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13K bytes
    - Viewed (0)
  4. test/fixedbugs/bug449.go

    // catch this.
    // NOTE: this program assumes comparing instance of T and T's
    // underlying []byte will make gc emit calls to runtime.equal,
    // and if gc optimizes this case, then the test will no longer
    // be correct (in the sense that it no longer tests runtime.equal).
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"strconv"
    	"strings"
    )
    
    const ntest = 1024
    
    func main() {
    	var decls, calls bytes.Buffer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 01 03:02:46 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  5. releasenotes/notes/47252.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 15:31:41 UTC 2023
    - 229 bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListenerTest.groovy

            testWorkerProgressListener.testWorkerProgressLoggers.get(testEvent.progressLoggerDescription) == testWorkerProgressLogger
        }
    
        def "can register progress loggers for different test workers"() {
            def testWorkerProgressLogger1 = Mock(ProgressLogger)
            def testWorkerProgressLogger2 = Mock(ProgressLogger)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. pkg/apis/storage/util/helpers.go

    const IsDefaultStorageClassAnnotation = "storageclass.kubernetes.io/is-default-class"
    
    // BetaIsDefaultStorageClassAnnotation is the beta version of IsDefaultStorageClassAnnotation.
    // TODO: remove Beta when no longer used
    const BetaIsDefaultStorageClassAnnotation = "storageclass.beta.kubernetes.io/is-default-class"
    
    // AlphaIsDefaultVolumeAttributesClassAnnotation is the alpha version of IsDefaultVolumeAttributesClassAnnotation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonsFixture.java

         * Kills all daemons.
         */
        void killAll();
    
        /**
         * Returns all known daemons. Includes any daemons that are no longer running.
         */
        List<? extends DaemonFixture> getDaemons();
    
        /**
         * Returns all daemons that are visible to clients. May include daemons that are no longer running (eg they have crashed).
         */
        List<? extends DaemonFixture> getVisible();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1alpha1/zz_generated.prerelease-lifecycle.go

    func (in *IPAddress) APILifecycleDeprecated() (major, minor int) {
    	return 1, 30
    }
    
    // APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or  "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top