Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for ADDS (0.05 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            }
        }
    
        /**
         * Adds a plugin to be applied
         *
         * @param comment A description of why the plugin is required
         */
        public BuildScriptBuilder plugin(@Nullable String comment, String pluginId) {
            block.plugins.add(new PluginSpec(pluginId, null, comment));
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        int GetResultIndexForEdge(const Edge* edge) const;
    
        // Creates an _Arg node for the src node of edge, and add its index to
        // args_by_src_, if none exists yet. Also adds its index to args_by_dst_,
        // and adds the edge within the subgraph from the _Arg node to the image of
        // the dst node.
        Status RecordArg(const Edge* edge,
                         const absl::flat_hash_map<const Node*, Node*>& node_images,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	case sectionAdditionals:
    		count = &b.header.additionals
    		err = errTooManyAdditionals
    	}
    	if *count == ^uint16(0) {
    		return err
    	}
    	*count++
    	return nil
    }
    
    // Question adds a single Question.
    func (b *Builder) Question(q Question) error {
    	if b.section < sectionQuestions {
    		return ErrNotStarted
    	}
    	if b.section > sectionQuestions {
    		return ErrSectionDone
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

        }
    
        private void writeReadOnlySetter(ClassVisitor visitor, Class<?> viewClass, boolean writable, ModelProperty<?> property) {
            if (!writable) {
                // Adds a void set$PropName(Object value) method that fails
                String setterName = "set" + StringUtils.capitalize(property.getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    	}
    
    	tests := []struct {
    		name             string
    		batchPeriod      time.Duration
    		adds             []podAdd
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three adds with no batching",
    			batchPeriod: 0 * time.Second,
    			adds: []podAdd{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay: 200 * time.Millisecond,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        void afterEvaluate(Action<? super Project> action);
    
        /**
         * <p>Adds a closure to call immediately before this project is evaluated.</p>
         *
         * @see Project#beforeEvaluate(Action)
         *
         * @param closure The closure to call.
         */
        void beforeEvaluate(Closure closure);
    
        /**
         * <p>Adds a closure to call immediately after this project is evaluated.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            return this;
        }
    
        /**
         * Adds a service instance to this registry. The given object is closed when this registry is closed.
         */
        public DefaultServiceRegistry add(Object serviceInstance) {
            return add(serviceInstance.getClass(), serviceInstance);
        }
    
        /**
         * Adds a service provider bean to this registry. This provider may define factory and decorator methods.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller_test.go

    	}
    
    	tests := []struct {
    		name             string
    		batchPeriod      time.Duration
    		adds             []podAdd
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three adds with no batching",
    			batchPeriod: 0 * time.Second,
    			adds: []podAdd{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay: 200 * time.Millisecond,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	// by injecting the pods through a reserved CycleState struct (PodsToActivate).
    	Activate(logger klog.Logger, pods map[string]*v1.Pod)
    	// AddUnschedulableIfNotPresent adds an unschedulable pod back to scheduling queue.
    	// The podSchedulingCycle represents the current scheduling cycle number which can be
    	// returned by calling SchedulingCycle().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

          }
    
        fun addPathSegment(pathSegment: String) =
          apply {
            push(pathSegment, 0, pathSegment.length, addTrailingSlash = false, alreadyEncoded = false)
          }
    
        /**
         * Adds a set of path segments separated by a slash (either `\` or `/`). If `pathSegments`
         * starts with a slash, the resulting URL will have empty path segment.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top