Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 106 for keynote (0.15 sec)

  1. src/internal/trace/oldtrace.go

    		blocked := false
    		it.events.All()(func(nev *oldtrace.Event) bool {
    			if nev.G != ev.G {
    				return true
    			}
    			// After an EvGoSysCall, the next event on the same G will either be
    			// EvGoSysBlock to denote a blocking syscall, or some other event
    			// (or the end of the trace) if the syscall didn't block.
    			if nev.Type == oldtrace.EvGoSysBlock {
    				blocked = true
    			}
    			return false
    		})
    		if blocked {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		{Event: framework.ClusterEvent{Resource: framework.CSIStorageCapacity, ActionType: framework.Add | framework.Update}},
    	}
    	return events
    }
    
    // podHasPVCs returns 2 values:
    // - the first one to denote if the given "pod" has any PVC defined.
    // - the second one to return any error if the requested PVC is illegal.
    func (pl *VolumeBinding) podHasPVCs(pod *v1.Pod) (bool, error) {
    	hasPVC := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/MediaType.java

      /**
       * <a href="http://www.opengeospatial.org/standards/kml/">OGC KML (Keyhole Markup Language)</a>.
       */
      public static final MediaType KML = createConstant(APPLICATION_TYPE, "vnd.google-earth.kml+xml");
    
      /**
       * <a href="http://www.opengeospatial.org/standards/kml/">OGC KML (Keyhole Markup Language)</a>,
       * compressed using the ZIP format into KMZ archives.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  4. src/go/types/typexpr.go

    // If an error occurred, x.mode is set to invalid.
    // For the meaning of def, see Checker.definedType, below.
    // If wantType is set, the identifier e is expected to denote a type.
    func (check *Checker) ident(x *operand, e *ast.Ident, def *TypeName, wantType bool) {
    	x.mode = invalid
    	x.expr = e
    
    	// Note that we cannot use check.lookup here because the returned scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/MediaType.java

      /**
       * <a href="http://www.opengeospatial.org/standards/kml/">OGC KML (Keyhole Markup Language)</a>.
       */
      public static final MediaType KML = createConstant(APPLICATION_TYPE, "vnd.google-earth.kml+xml");
    
      /**
       * <a href="http://www.opengeospatial.org/standards/kml/">OGC KML (Keyhole Markup Language)</a>,
       * compressed using the ZIP format into KMZ archives.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/taint_eviction.go

    		return
    	}
    	minTolerationTime := getMinTolerationTime(usedTolerations)
    	// getMinTolerationTime returns negative value to denote infinite toleration.
    	if minTolerationTime < 0 {
    		logger.V(4).Info("Current tolerations for pod tolerate forever, cancelling any scheduled deletion", "pod", podNamespacedName.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/typexpr.go

    // If an error occurred, x.mode is set to invalid.
    // For the meaning of def, see Checker.definedType, below.
    // If wantType is set, the identifier e is expected to denote a type.
    func (check *Checker) ident(x *operand, e *syntax.Name, def *TypeName, wantType bool) {
    	x.mode = invalid
    	x.expr = e
    
    	// Note that we cannot use check.lookup here because the returned scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

    // ALGORITHM OVERVIEW
    // ==================
    //
    // We map every output produced by each node in the TensorFlow graph (including
    // control dependence) into an instance of the Predicate class.  Instances of
    // Predicate denote logical formulas and mapping a node `n` to a predicate
    // `pred` implies that `n` is live whenever `pred` is true.  Then we can deduce
    // mismatching liveness in the inputs to node by comparing the predicate those
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    												Values:   []string{"0204"},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			labels: map[string]string{
    				// We use two digit to denote major version and two digit for minor version.
    				"kernel-version": "0206",
    			},
    			runPreFilter: true,
    		},
    		{
    			name: "Pod with matchExpressions using NotIn operator that matches the existing node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    		// Some systems use leading _ to denote non-assembly symbols.
    		return s == "__cgodebug_ints" || s == "___cgodebug_ints"
    	}
    	isDebugFloats := func(s string) bool {
    		// Some systems use leading _ to denote non-assembly symbols.
    		return s == "__cgodebug_floats" || s == "___cgodebug_floats"
    	}
    	indexOfDebugStr := func(s string) int {
    		// Some systems use leading _ to denote non-assembly symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top