Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 542 for Maximum (0.16 sec)

  1. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // Defaults to 10.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // Indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // The maximum time in seconds for a deployment to make progress before it
      // is considered to be failed. The deployment controller will continue to
      // process failed deployments and a condition with a ProgressDeadlineExceeded
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // Defaults to 10.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // Indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // The maximum time in seconds for a deployment to make progress before it
      // is considered to be failed. The deployment controller will continue to
      // process failed deployments and a condition with a ProgressDeadlineExceeded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

          fail("NumberFormatException should have been raised.");
        } catch (NumberFormatException expected) {
        }
      }
    
      public void testParseLongFails() {
        try {
          // One more than maximum value
          UnsignedLongs.parseUnsignedLong("18446744073709551616");
          fail();
        } catch (NumberFormatException expected) {
        }
      }
    
      public void testDecodeLong() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:36:17 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

          fail("NumberFormatException should have been raised.");
        } catch (NumberFormatException expected) {
        }
      }
    
      public void testParseLongFails() {
        try {
          // One more than maximum value
          UnsignedLongs.parseUnsignedLong("18446744073709551616");
          fail();
        } catch (NumberFormatException expected) {
        }
      }
    
      public void testDecodeLong() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:36:17 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller manager.\n\nCertificate signers may not honor this field for various reasons:\n\n  1. Old signer that is unaware of the field (such as the in-tree\n     implementations prior to v1.22)\n  2. Signer whose configured maximum is shorter than the requested duration\n  3. Signer whose configured minimum is longer...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. src/mime/multipart/multipart.go

    	dashBoundary     []byte // "--boundary"
    }
    
    // maxMIMEHeaderSize is the maximum size of a MIME header we will parse,
    // including header keys, values, and map overhead.
    const maxMIMEHeaderSize = 10 << 20
    
    // multipartmaxheaders is the maximum number of header entries NextPart will return,
    // as well as the maximum combined total of header entries Reader.ReadForm will return
    // in FileHeaders.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. internal/bucket/object/lock/lock.go

    type DefaultRetention struct {
    	XMLName xml.Name `xml:"DefaultRetention"`
    	Mode    RetMode  `xml:"Mode"`
    	Days    *uint64  `xml:"Days"`
    	Years   *uint64  `xml:"Years"`
    }
    
    // Maximum support retention days and years supported by AWS S3.
    const (
    	// This tested by using `mc lock` command
    	maximumRetentionDays  = 36500
    	maximumRetentionYears = 100
    )
    
    // UnmarshalXML - decodes XML data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer_test.cc

      remat.RunGreedyAlgorithm(/*max_cost=*/2, /*max_block_length=*/1,
                               /*min_savings=*/1);
      // Profile can be flattened twice--first, the global maximum of 31 is reduced
      // by 8; then the newly-global maximum of 28 is reduced by 8.
      EXPECT_THAT(remat.GetMemProfile(),
                  ElementsAreArray({1, 3, 7, 15, 23, 23, 15, 15, 7, 3, 1, 4, 12, 20,
                                    20, 12, 12, 4}));
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  9. cmd/kubemark/app/hollow_node.go

    	fs.Float32Var(&c.QPS, "kube-api-qps", 10, "QPS indicates the maximum QPS to the apiserver.")
    	fs.IntVar(&c.Burst, "kube-api-burst", 20, "Burst indicates maximum burst for throttle to the apiserver.")
    
    	bindableNodeLabels := cliflag.ConfigurationMap(c.NodeLabels)
    	fs.Var(&bindableNodeLabels, "node-labels", "Additional node labels")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/test/framework/suite.go

    	RequireExternalControlPlaneTopology() Suite
    	// RequireMinVersion validates the environment meets a minimum version
    	RequireMinVersion(minorVersion uint) Suite
    	// RequireMaxVersion validates the environment meets a maximum version
    	RequireMaxVersion(minorVersion uint) Suite
    	// Setup runs enqueues the given setup function to run before test execution.
    	Setup(fn resource.SetupFn) Suite
    	Teardown(fn resource.TeardownFn) Suite
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top