Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for negligible (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                            _INVOKEVIRTUAL(generatedType, "getConventionMapping", RETURN_CONVENTION_MAPPING);
                            // GENERATE convention.ineligible(__property.getName()__)
                            _LDC(property.getName());
                            _INVOKEINTERFACE(CONVENTION_MAPPING_TYPE, "ineligible", RETURN_VOID_FROM_STRING);
                        }
                    }
                    _RETURN();
                }});
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    This work piece has to process the task execution result, so it cannot be a task itself.
    
    The Dataflow Actions API provides a way to schedule this type of work.
    A dataflow action is a parameterized isolated piece of work that becomes eligible for execution as soon as all input parameters become available.
    
    == Implementing a dataflow action
    
    The first step is to implement the action itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    // don't do this to avoid explicit casts (implicit conversion from
    // `absl::string_view` to `llvm::StringRef` is not supported until C++17).
    
    // Whether soft placement is allowed. If true, the marked node is eligible for
    // outside compilation.
    inline constexpr llvm::StringRef kAllowSoftPlacementAttr =
        "allow_soft_placement";
    
    // Marks a node for XLA compilation. The attribute value indicates the
    // compilation device type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    // kube-controller-manager).  A cluster may have any number of ClusterCIDR
    // resources, all of which will be considered when allocating a CIDR for a
    // Node.  A ClusterCIDR is eligible to be used for a given Node when the node
    // selector matches the node in question and has free CIDRs to allocate.  In
    // case of multiple matching ClusterCIDR resources, the allocator will attempt
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/preemption/preemption.go

    		return nil, framework.AsStatus(err)
    	}
    
    	// 1) Ensure the preemptor is eligible to preempt other pods.
    	if ok, msg := ev.PodEligibleToPreemptOthers(pod, m[pod.Status.NominatedNodeName]); !ok {
    		logger.V(5).Info("Pod is not eligible for preemption", "pod", klog.KObj(pod), "reason", msg)
    		return nil, framework.NewStatus(framework.Unschedulable, msg)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

          }
          for (call in runningAsyncCalls) {
            call.call.cancel()
          }
          for (call in runningSyncCalls) {
            call.cancel()
          }
        }
      }
    
      /**
       * Promotes eligible calls from [readyAsyncCalls] to [runningAsyncCalls] and runs them on the
       * executor service. Must not be called with synchronization because executing calls can call
       * into user code.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		// If the object has changed, we know the in-tree plugin re-invocations have mutated the object,
    		// and we need to reinvoke all eligible webhooks.
    		webhookReinvokeCtx.RequireReinvokingPreviouslyInvokedPlugins()
    	}
    	defer func() {
    		webhookReinvokeCtx.SetLastWebhookInvocationOutput(attr.GetObject())
    	}()
    	v := &versionedAttributeAccessor{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. docs/bucket/replication/README.md

    replication rules and were created prior to adding replication configuration OR while replication rules were disabled will be synced to the target cluster. Depending on the number of previously existing objects, the existing objects that are now eligible to be replicated will eventually be synced to the target cluster as the scanner schedules them. This may be slower depending on the load on the cluster, latency and size of the namespace.
    
    In the rare event that target DR site is entirely...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1/generated.proto

      // ttlSecondsAfterFinished after the Job finishes, it is eligible to be
      // automatically deleted. When the Job is being deleted, its lifecycle
      // guarantees (e.g. finalizers) will be honored. If this field is unset,
      // the Job won't be automatically deleted. If this field is set to zero,
      // the Job becomes eligible to be deleted immediately after it finishes.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    	return s
    }
    
    // initPreScoreState iterates "filteredNodes" to filter out the nodes which
    // don't have required topologyKey(s), and initialize:
    // 1) s.TopologyPairToPodCounts: keyed with both eligible topology pair and node names.
    // 2) s.IgnoredNodes: the set of nodes that shouldn't be scored.
    // 3) s.TopologyNormalizingWeight: The weight to be given to each constraint based on the number of values in a topology.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top