Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for gStates (0.13 sec)

  1. pkg/security/apparmor/validate.go

    func (v *validator) ValidateHost() error {
    	return v.validateHostErr
    }
    
    // validateHost verifies that the host and runtime is capable of enforcing AppArmor profiles.
    func validateHost() error {
    	// Check feature-gates
    	if !utilfeature.DefaultFeatureGate.Enabled(features.AppArmor) {
    		return errors.New("AppArmor disabled by feature-gate")
    	}
    
    	// Check build support.
    	if isDisabledBuild {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

          PropagatePotentiallyWrittenUpFromCallee(batch_function.func().getRegion(),
                                                  batch_function.getOperands());
          return;
        }
        // For all other ops, we assume it mutates all resources it uses, so
        // this errs on the side of being conservative. We should improve
        // this by using either a property or a trait that clearly
        // identifies ops with resource mutating behavior.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. cmd/metacache.go

    	if len(b) > 0 && !strings.HasSuffix(b, slashSeparator) {
    		b += slashSeparator
    	}
    	return b
    }
    
    // update cache with new status.
    // The updates are conditional so multiple callers can update with different states.
    func (m *metacache) update(update metacache) {
    	m.lastUpdate = UTCNow()
    
    	if m.lastHandout.After(m.lastHandout) {
    		m.lastHandout = UTCNow()
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    		csimigration.NewPluginManager(csiTranslator, utilfeature.DefaultFeatureGate),
    		csiTranslator)
    
    	totalVolumesMap := metricCollector.getTotalVolumesCount()
    	if len(totalVolumesMap) != 2 {
    		t.Errorf("Expected 2 states, got %d", len(totalVolumesMap))
    	}
    
    	dswCount, ok := totalVolumesMap["desired_state_of_world"]
    	if !ok {
    		t.Errorf("Expected desired_state_of_world, got nothing")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/match/match.go

    		OnMatch: &matcher.Matcher_OnMatch_Matcher{
    			Matcher: match,
    		},
    	}
    }
    
    // BuildMatcher cleans the entire match tree to avoid empty maps and returns a viable top-level matcher.
    // Note: this mutates the internal mappers/matchers that make up the tree.
    func (m Mapper) BuildMatcher() *matcher.Matcher {
    	root := m
    	for len(root.Map) == 0 {
    		// the top level matcher is empty; if its fallback goes to a matcher, return that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/runtime/export_debug_test.go

    					// This is for TestDebugCallUnsafePoint.
    					return nil, h.err
    				}
    				fallthrough
    			case "retry _Grunnable", "executing on Go runtime stack", "call from within the Go runtime":
    				// These are transient states. Try to get out of them.
    				if i < 100 {
    					usleep(100)
    					Gosched()
    					continue
    				}
    			}
    			return nil, h.err
    		}
    		return h.panic, nil
    	}
    }
    
    type debugCallHandler struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. pkg/kube/krt/core.go

    	// Note this may not be universally unique
    	name() string
    	// Uid is an internal unique ID for this collection. MUST be globally unique
    	uid() collectionUID
    
    	dump()
    
    	// Augment mutates an object for use in various function calls. See WithObjectAugmentation
    	augment(any) any
    }
    
    // Singleton is a special Collection that only ever has a single object. They can be converted to the Collection where convenient,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/crypto/sha1/sha1block_arm.s

    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    // function of b, c, d, and then mixes the result into and rotates the
    // five registers a, b, c, d, e holding the intermediate results.
    //
    // The register rotation is implemented by rotating the arguments to
    // the round macros instead of by explicit move instructions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         *
         * @return the attributes container for this dependency
         *
         * @since 4.8
         */
        @Override
        AttributeContainer getAttributes();
    
        /**
         * Mutates the attributes of this dependency. Attributes are used during dependency resolution to select the appropriate
         * target variant, in particular when a single component provides different variants.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ExecutionList.java

       * documentation.
       */
      public void add(Runnable runnable, Executor executor) {
        // Fail fast on a null. We throw NPE here because the contract of Executor states that it throws
        // NPE on null listener, so we propagate that contract up into the add method as well.
        checkNotNull(runnable, "Runnable was null.");
        checkNotNull(executor, "Executor was null.");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top