Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for unstable (0.18 sec)

  1. releasenotes/notes/50747.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50162
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 208 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/module/module.go

    func splitGopkgIn(path string) (prefix, pathMajor string, ok bool) {
    	if !strings.HasPrefix(path, "gopkg.in/") {
    		return path, "", false
    	}
    	i := len(path)
    	if strings.HasSuffix(path, "-unstable") {
    		i -= len("-unstable")
    	}
    	for i > 0 && ('0' <= path[i-1] && path[i-1] <= '9') {
    		i--
    	}
    	if i <= 1 || path[i-1] != 'v' || path[i-2] != '.' {
    		// All gopkg.in paths must end in vN for some N.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtFunctionLikeSymbol.kt

        public abstract val valueParameters: List<KaValueParameterSymbol>
    
        /**
         * Kotlin functions always have stable parameter names that can be reliably used when calling them with named arguments.
         * Functions loaded from platform definitions (e.g. Java binaries or JS) may have unstable parameter names that vary from
         * one platform installation to another. These names can not be used reliably for calls with named arguments.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/compute_test.go

    						EtcdVersion:    getEtcdVersion(v1Z0alpha2),
    					},
    				},
    			},
    			allowExperimental: true,
    			errExpected:       false,
    		},
    		{
    			name: "upgrade from an unstable version to an unstable version should be supported",
    			vg: &fakeVersionGetter{
    				clusterVersion:   v1Z0alpha1.String(),
    				componentVersion: v1Z0alpha1.String(),
    				kubeletVersion:   v1Y5.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            outputs.snapshot { run language.compileTaskName }
    
            when:
            // Compile more classes, so there is possibility some is generated before a compile failure.
            // Since order of passed classes to javac is unstable we can compile classes in different order on different platforms.
            // Compile .java also for Groovy, so the file is written before failure.
            sourceWithFileSuffix("java", "package a; class A {}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/values.yaml

          enabled: false
          # Set ambient config dir path: defaults to /etc/ambient-config
          configDir: ""
          # If enabled, and ambient is enabled, DNS redirection will be enabled
          dnsCapture: false
          # UNSTABLE: If enabled, and ambient is enabled, enables ipv6 support
          ipv6: false
    
    
        repair:
          enabled: true
          hub: ""
          tag: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. CHANGELOG.md

    **not stable** and will likely change before the final 5.0.0 release.
    
    If you have code that subclasses `okhttp3.mockwebserver.QueueDispatcher`, this update is not source
    or binary compatible. Migrating to the new `mockwebserver3` package will fix this problem.
    
     *  New: DNS over HTTPS is now a stable feature of OkHttp. We introduced this as an experimental
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. pkg/kube/krt/informer.go

    	// Internal optimization: we know kclient will eventually lookup "ns/name"
    	// We also have a key in this format.
    	// Rather than split and rejoin it later, just pass it as the name
    	// This is depending on "unstable" implementation details, but we own both libraries and tests would catch any issues.
    	if got := i.inf.Get(string(k), ""); !controllers.IsNil(got) {
    		return &got
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. hack/lib/etcd.sh

      elif command -v netstat &>/dev/null; then
        port_check_command="netstat"
      else
        kube::log::usage "unable to identify if etcd is bound to port ${ETCD_PORT}. unable to find ss or netstat utilities."
        exit 1
      fi
      if ${port_check_command} -nat | grep "LISTEN" | grep "[\.:]${ETCD_PORT:?}" >/dev/null 2>&1; then
        kube::log::usage "unable to start etcd as port ${ETCD_PORT} is in use. please stop the process listening on this port and retry."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        }
    
        /**
         * Can the generated build use new and unstable features?
         *
         * When enabled, the generated build will use new patterns, APIs or features that
         * may be unstable between minor releases. Use this if you'd like to try out the
         * latest features of Gradle.
         *
         * By default, init will generate a build that uses stable features and behavior.
         *
         * @since 7.3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top