Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for small8 (0.15 sec)

  1. pkg/controller/job/job_controller.go

    	jm.enqueueSyncJobInternal(logger, obj, syncJobBatchPeriod)
    }
    
    // enqueueSyncJobWithDelay tells the controller to invoke syncJob with a
    // custom delay, but not smaller than the batching delay.
    // It is used when pod recreations are delayed due to pod failures.
    // obj could be an *batch.Job, or a DeletionFinalStateUnknown marker item.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    					triggerValue, triggerSupported = value, true
    					break
    				}
    			}
    		}
    	}
    
    	// It boils down to a tradeoff between:
    	// - having it as small as possible to reduce memory usage
    	// - having it large enough to ensure that watchers that need to process
    	//   a bunch of changes have enough buffer to avoid from blocking other
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    /**
     * How a symbol is imported. The order of the enum entry represents the priority of imports. If a symbol is available from multiple kinds of
     * imports, the symbol from "smaller" kind is used. For example, an explicitly imported symbol can overwrite a star-imported symbol.
     */
    private enum class ImportKind {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

                  Eq(BuiltinOperator_FULLY_CONNECTED));
      ASSERT_THAT(model_.operator_codes[0]->version, Eq(11));
    
      // Check the scale value. The scale value will be smaller than the int8 scale
      // since the scale is calculated by dividing by 2^bit_num.
      const int32_t target_input_index = op->inputs[0];
      const QuantizationParameters* float_input_quant_params =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrEntityTooSmall: {
    		Code:           "EntityTooSmall",
    		Description:    "Your proposed upload is smaller than the minimum allowed object size.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrEntityTooLarge: {
    		Code:           "EntityTooLarge",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	// by module path, so that we only revisit a given pathSet when the
    	// version of some module in its containingPackage list has been determined.
    	//
    	// However, N tends to be small, and most candidate sets will include only one
    	// candidate module (so they will be resolved in the first iteration), so for
    	// now we'll stick to the simple O(N²) approach.
    
    	resolved := 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. cmd/iam.go

    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    
    	return nil
    }
    
    // CreateUser - create new user credentials and policy, if user already exists
    // they shall be rewritten with new inputs.
    func (sys *IAMSys) CreateUser(ctx context.Context, accessKey string, ureq madmin.AddOrUpdateUserReq) (updatedAt time.Time, err error) {
    	if !sys.Initialized() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top