Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 528 for logic (0.04 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

    import java.util.HashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import static com.google.common.base.Strings.nullToEmpty;
    
    /**
     * Encapsulates all logic required to extract data from a {@link SoftwareComponentInternal} in order to
     * transform it to a representation compatible with Ivy.
     */
    public class IvyComponentParser {
    
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (1)
  2. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	serviceAccounts kclient.Client[*corev1.ServiceAccount]
    	namespaces      kclient.Client[*corev1.Namespace]
    	tagWatcher      revisions.TagWatcher
    	revision        string
    }
    
    // Patcher is a function that abstracts patching logic. This is largely because client-go fakes do not handle patching
    type patcher func(gvr schema.GroupVersionResource, name string, namespace string, data []byte, subresources ...string) error
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

     * If analysis failed for any reason, that reason is captured and triggers full rebuilds if this class set is used.
     *
     * @see ClassSetAnalysis for the logic that calculates transitive dependencies.
     */
    public class ClassSetAnalysisData {
    
        static final String MODULE_INFO = "module-info";
        static final String PACKAGE_INFO = "package-info";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

            project.getPluginManager().apply(NativeTestingBasePlugin.class);
    
            final ProviderFactory providers = project.getProviders();
    
            // Create test suite component
            // TODO - Reuse logic from Swift*Plugin
            // TODO - component name and extension name aren't the same
            // TODO - should use `src/xctest/swift` as the convention?
            // Add the test suite and extension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/policy.go

    	// Merge the affinities using a bitwise-and operation.
    	mergedAffinity := bitmask.And(defaultAffinity, numaAffinities...)
    	// Build a mergedHint from the merged affinity mask, setting preferred as
    	// appropriate based on the logic above.
    	return TopologyHint{mergedAffinity, preferred}
    }
    
    func filterProvidersHints(providersHints []map[string][]TopologyHint) [][]TopologyHint {
    	// Loop through all hint providers and save an accumulated list of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/utils.go

    	if timeBetweenTwoSchedules < 1 {
    		return earliestTime, nil, missedSchedules, fmt.Errorf("time difference between two schedules is less than 1 second")
    	}
    	// this logic used for calculating number of missed schedules does a rough
    	// approximation, by calculating a diff between two schedules (t1 and t2),
    	// and counting how many of these will fit in between last schedule and now
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
      // There are a maximum of 64 match conditions allowed.
      //
      // The exact matching logic is (in order):
      //   1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.
      //   2. If ALL matchConditions evaluate to TRUE, the webhook is called.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

        }
    
        //===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
    
        private static OptionalEntity<SynonymItem> getEntity(final CreateForm form) {
            switch (form.crudMode) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. pkg/kubelet/util/manager/watch_based_manager.go

    	for _, item := range c.items {
    		item.stop()
    	}
    }
    
    // NewWatchBasedManager creates a manager that keeps a cache of all objects
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

        GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel);
      } GTEST_ATTRIBUTE_UNUSED_;
    
      // An enumeration of possible roles that may be taken when a death
      // test is encountered.  EXECUTE means that the death test logic should
      // be executed immediately.  OVERSEE means that the program should prepare
      // the appropriate environment for a child process to execute the death
      // test, then wait for it to complete.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top