Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 247 for lifo (0.05 sec)

  1. src/vendor/golang.org/x/net/lif/zsys_solaris_amd64.go

    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs defs_solaris.go
    
    package lif
    
    type sockaddrStorage struct {
    	Family     uint16
    	X_ss_pad1  [6]int8
    	X_ss_align float64
    	X_ss_pad2  [240]int8
    }
    
    const (
    	sysLIFC_NOXMIT          = 0x1
    	sysLIFC_EXTERNAL_SOURCE = 0x2
    	sysLIFC_TEMPORARY       = 0x4
    	sysLIFC_ALLZONES        = 0x8
    	sysLIFC_UNDER_IPMP      = 0x10
    	sysLIFC_ENABLED         = 0x20
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 981 bytes
    - Viewed (0)
  2. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/Signatory.java

     * @since 4.5
     */
    public interface Signatory {
    
        /**
         * <p>An identifying name for this signatory.</p>
         *
         * <p>The name must be constant for the life of the signatory and should uniquely identify it within a project.</p>
         */
        @Internal
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.cc

      }
    
      StringRef getArgument() const final {
        // This is the argument used to refer to the pass in
        // the textual format (on the commandline for example).
        return "quant-lift-quantizable-spots-as-functions-drq";
      }
    
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Replace quantization candidates with composite functions into the "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/namespacecontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.DurationVar(&o.NamespaceSyncPeriod.Duration, "namespace-sync-period", o.NamespaceSyncPeriod.Duration, "The period for syncing namespace life-cycle updates")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  5. hack/logcheck.conf

    contextual k8s.io/kubernetes/pkg/scheduler/.*
    contextual k8s.io/kubernetes/test/e2e/dra/.*
    
    # As long as contextual logging is alpha or beta, all WithName, WithValues,
    # NewContext calls have to go through klog. Once it is GA, we can lift
    # this restriction. Whether we then do a global search/replace remains
    # to be decided.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    	//
    	// TODO(121510): 1.29: don't allow a zero value, either via v1 or
    	//  v1beta3 (with the roundtrip annotation) for the
    	//  'nominalConcurrencyShares' field of 'limited' for CREATE operation.
    	//  1:30: lift this restriction, allow zero value via v1 or v1beta3
    	opts := validation.PriorityLevelValidationOptions{
    		AllowZeroLimitedNominalConcurrencyShares: true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    // queue is a sequence of requests that have arrived but not yet finished
    // execution in both the real and virtual worlds.
    type queue struct {
    	// The requestsWaiting not yet executing in the real world are stored in a FIFO list.
    	requestsWaiting fifo
    
    	// nextDispatchR is the R progress meter reading at
    	// which the next request will be dispatched in the virtual world.
    	nextDispatchR fcrequest.SeatSeconds
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_lift_variables_invalid_session.mlir

    // RUN: tf-opt -verify-diagnostics -tf-saved-model-lift-variables-invalid-session-test -split-input-file %s | FileCheck %s --dump-input=fail
    
    // Test case: Invalid session.
    // expected-error @+1 {{'builtin.module' op no session provided}}
    module attributes {tf_saved_model.semantics, tf_saved_model.under_construction} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/UnrelatedMethodInstrumentationInDynamicGroovyIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
    
            where:
            enableIndy << [true, false]
            indyStatus = enableIndy ? "with indy" : "without indy"
        }
    
        // Lift the visibility of the method to make it available for the mixin
        @Override
        TestFile buildScript(@GroovyBuildScriptLanguage String script) {
            super.buildScript(script)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Named.java

     */
    public interface Named {
    
        /**
         * The object's name.
         * <p>
         * Must be constant for the life of the object.
         *
         * @return The name. Never null.
         */
        String getName();
    
        // -- Internal note --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top