Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 353 for creators (0.14 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

      }
    
      @Override
      public abstract ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType);
    
      /**
       * Returns a builder that creates immutable sorted multisets with an explicit comparator. If the
       * comparator has a more general type than the set being generated, such as creating a {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            return projectCacheDir;
        }
    
        /**
         * Creates a {@code StartParameter} with default values. This is roughly equivalent to running Gradle on the command-line with no arguments.
         */
        public StartParameter() {
            this(new BuildLayoutParameters());
        }
    
        /**
         * Creates a {@code StartParameter} initialized from the given {@link BuildLayoutParameters}.
         * @since 7.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type Time struct {
    	time.Time `protobuf:"-"`
    }
    
    // DeepCopyInto creates a deep-copy of the Time value.  The underlying time.Time
    // type is effectively immutable in the time API, so it is safe to
    // copy-by-assign, despite the presence of (unexported) Pointer fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/public/session_options.h"
    #include "tsl/platform/statusor.h"
    
    #define DEBUG_TYPE "run-tf-graph-optimization"
    
    namespace tensorflow {
    namespace {
    // Creates a pass to convert MLIR to Graph, run user-specified Graph
    // Optimization Passes and convert back to MLIR.
    // Constraints: This pass expects that all operations in the MLIR module either
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * but cheaper to compute when the module names are not needed.
         *
         * @see #getPathType(Path)
         */
        private final Map<Path, PathType> pathTypes;
    
        /**
         * Creates an initially empty cache.
         */
        PathModularizationCache() {
            moduleInfo = new HashMap<>();
            pathTypes = new HashMap<>();
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/kube/krt/informer.go

    			c.ShutdownHandlers()
    			return
    		}
    		close(h.synced)
    		h.log.Infof("%v synced", h.name())
    	}()
    	return h
    }
    
    // NewInformer creates a Collection[I] sourced from
    // the results of kube.Client querying resources of type I
    // from the API Server.
    //
    // Resources must have their GVR and GVK registered in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/initsystem"
    	utilruntime "k8s.io/kubernetes/cmd/kubeadm/app/util/runtime"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/users"
    )
    
    // NewCleanupNodePhase creates a kubeadm workflow phase that cleanup the node
    func NewCleanupNodePhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "cleanup-node",
    		Aliases: []string{"cleanupnode"},
    		Short:   "Run cleanup node.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. cmd/event-notification.go

    // EventNotifier - notifies external systems about events in MinIO.
    type EventNotifier struct {
    	sync.RWMutex
    	targetList     *event.TargetList
    	bucketRulesMap map[string]event.RulesMap
    }
    
    // NewEventNotifier - creates new event notification object.
    func NewEventNotifier(ctx context.Context) *EventNotifier {
    	// targetList/bucketRulesMap/bucketRemoteTargetRulesMap are populated by NotificationSys.InitBucketTargets()
    	return &EventNotifier{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      }
    
      /**
       * Returns a builder that creates immutable sorted sets whose elements are ordered by the reverse
       * of their natural ordering.
       */
      public static <E extends Comparable<?>> Builder<E> reverseOrder() {
        return new Builder<>(Collections.reverseOrder());
      }
    
      /**
       * Returns a builder that creates immutable sorted sets whose elements are ordered by their
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    "C:\\Program Files\\Java\\jdk1.8/bin/java.exe" -Xmx128m -Dfile.encoding=UTF-8 -XX:MaxPermSize=512m "-Djava.io.tmpdir=C:\\tcagent1\\temp\\buildTmp"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top