Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for Backward (0.13 sec)

  1. guava/src/com/google/common/reflect/TypeToken.java

          @CheckForNull
          K getSuperclass(K type) {
            return delegate.getSuperclass(type);
          }
        }
      }
    
      // This happens to be the hash of the class as of now. So setting it makes a backward compatible
      // change. Going forward, if any incompatible change is added, we can change the UID back to 1.
      private static final long serialVersionUID = 3637540370352322684L;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    		method := test.method
    		bucket := test.bucket
    		require.Equal(t, fw.serverUnderTest.getMetricMethodBucket(method), bucket)
    	}
    }
    
    func TestDebuggingDisabledHandlers(t *testing.T) {
    	// for backward compatibility even if enablesystemLogHandler or enableProfilingHandler is set but not
    	// enableDebuggingHandler then /logs, /pprof and /flags shouldn't be served.
    	kubeCfg := &kubeletconfiginternal.KubeletConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                        /*
                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
                                prefix,
                                "scope",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeToken.java

          @CheckForNull
          K getSuperclass(K type) {
            return delegate.getSuperclass(type);
          }
        }
      }
    
      // This happens to be the hash of the class as of now. So setting it makes a backward compatible
      // change. Going forward, if any incompatible change is added, we can change the UID back to 1.
      private static final long serialVersionUID = 3637540370352322684L;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Get(ctx context.Context, key string, opts storage.GetOptions, objPtr runtime.Object) error {
    	if opts.ResourceVersion == "" {
    		// If resourceVersion is not specified, serve it from underlying
    		// storage (for backward compatibility).
    		return c.storage.Get(ctx, key, opts, objPtr)
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if !c.ready.check() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		}
    	}
    	e := ""
    	if uss.expectedEpochAdvances > 0 {
    		e = fmt.Sprintf(`        # HELP apiserver_flowcontrol_epoch_advance_total [ALPHA] Number of times the queueset's progress meter jumped backward
            # TYPE apiserver_flowcontrol_epoch_advance_total counter
            apiserver_flowcontrol_epoch_advance_total{priority_level=%q,success=%q} %d%s`, uss.name, "true", uss.expectedEpochAdvances, "\n")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            },
            "port": {
              "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.",
              "type": "integer",
              "format": "int32"
            }
          }
        },
        "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ValidationRule": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                    spaceChars = split(spaceStr, "u")
                            .get(stream -> stream.filter(StringUtil::isNotBlank).mapToInt(s -> Integer.parseInt(s, 16)).toArray());
                } else {
                    // backward compatibility
                    final int length = spaceStr.length();
                    spaceChars = new int[length];
                    for (int i = 0; i < length; i++) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // this service.
      // +optional
      optional string path = 3;
    
      // If specified, the port on the service that hosting webhook.
      // Default to 443 for backward compatibility.
      // `port` should be a valid port number (1-65535, inclusive).
      // +optional
      optional int32 port = 4;
    }
    
    // TypeChecking contains results of type checking the expressions in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    	if !ok {
    		// If interface EnqueueExtensions is not implemented, register the default enqueue extensions
    		// to the plugin because we don't know which events the plugin is interested in.
    		// This is to ensure backward compatibility.
    		f.enqueueExtensions = append(f.enqueueExtensions, &defaultEnqueueExtension{pluginName: p.Name()})
    		return
    	}
    
    	f.enqueueExtensions = append(f.enqueueExtensions, ext)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top