Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for auds (0.05 sec)

  1. src/cmd/link/internal/loader/loader.go

    	n := 0
    	_, auxs := l.auxs(i)
    	for j := range auxs {
    		a := &auxs[j]
    		if a.Type() == goobj.AuxPcdata {
    			n++
    		}
    	}
    	return n
    }
    
    // Returns all funcdata symbols of symbol i.
    // tmp is a scratch space.
    func (l *Loader) Funcdata(i Sym, tmp []Sym) []Sym {
    	fd := tmp[:0]
    	r, auxs := l.auxs(i)
    	for j := range auxs {
    		a := &auxs[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/asm/internal/asm/testdata/arm64.s

    	AND	$0xff00ffff, R1                     // AND	$4278255615, R1                 // fbff9fd21be0bff221001b8a
    	ANDS	$0xffff, R2                         // ANDS	$65535, R2                      // 423c40f2
    	AND	$0x7fffffff, R3                     // AND	$2147483647, R3                 // 63784092
    	ANDS	$0x0ffffffff80000000, R2            // ANDS	$-2147483648, R2                // 428061f2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top