Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for addsym (0.2 sec)

  1. src/cmd/link/internal/ld/data.go

    }
    
    func (p *GCProg) End(size int64) {
    	p.w.ZeroUntil(size / int64(p.ctxt.Arch.PtrSize))
    	p.w.End()
    	if debugGCProg {
    		fmt.Fprintf(os.Stderr, "ld: end GCProg\n")
    	}
    }
    
    func (p *GCProg) AddSym(s loader.Sym) {
    	ldr := p.ctxt.loader
    	typ := ldr.SymGoType(s)
    
    	// Things without pointers should be in sym.SNOPTRDATA or sym.SNOPTRBSS;
    	// everything we see should have pointers and should therefore have a type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    	var AMD64ops = []opData{
    		// {ADD,SUB,MUL,DIV}Sx: floating-point arithmetic
    		// x==S for float32, x==D for float64
    		// computes arg0 OP arg1
    		{name: "ADDSS", argLength: 2, reg: fp21, asm: "ADDSS", commutative: true, resultInArg0: true},
    		{name: "ADDSD", argLength: 2, reg: fp21, asm: "ADDSD", commutative: true, resultInArg0: true},
    		{name: "SUBSS", argLength: 2, reg: fp21, asm: "SUBSS", resultInArg0: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. src/cmd/go/alldocs.go

    //
    // Tidy makes sure go.mod matches the source code in the module.
    // It adds any missing modules necessary to build the current module's
    // packages and dependencies, and it removes unused modules that
    // don't provide any relevant packages. It also adds any missing entries
    // to go.sum and removes any unnecessary ones.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            succeeds("resolve")
    
            then:
            outputContains("files: [b.jar]")
        }
    
        @ToBeFixedForConfigurationCache(because = "treating file collection visit failures as a configuration cache problem adds an additional failure to the build summary; exception chain is different when transform input cannot be resolved")
        def "user gets a reasonable error message when a transform input cannot be downloaded and proceeds with other inputs"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	// comment at the top of the file for details.
    	wakep()
    }
    
    // injectglist adds each runnable G on the list to some run queue,
    // and clears glist. If there is no current P, they are added to the
    // global queue, and up to npidle M's are started to run them.
    // Otherwise, for each idle P, this adds a G to the global queue
    // and starts an M. Any remaining G's are added to the current P's
    // local run queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      fi
    
    }
    
    # Adds master replica to etcd cluster.
    #
    # Assumed vars:
    #   REPLICA_NAME
    #   PROJECT
    #   EXISTING_MASTER_NAME
    #   EXISTING_MASTER_ZONE
    #
    # $1: etcd client port
    # $2: etcd internal port
    # $3: whether etcd communication should use mtls
    # returns the result of ssh command which adds replica
    function add-replica-to-etcd() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    		}
    		importPaths = append(importPaths, path)
    		if forCompiler {
    			p.Internal.CompiledImports = append(p.Internal.CompiledImports, path)
    		}
    	}
    
    	if !opts.IgnoreImports {
    		// Cgo translation adds imports of "unsafe", "runtime/cgo" and "syscall",
    		// except for certain packages, to avoid circular dependencies.
    		if p.UsesCgo() {
    			addImport("unsafe", true)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    literal - required: - environment - required: - header properties: environment: description: Environment adds the value of an environment variable to each span. properties: defaultValue: description: Optional. type: string name: description: Name of the environment variable from which to extract the tag value. minLength: 1 type: string required: - name type: object header: description: RequestHeader adds the value of an header from the request to each span. properties: defaultValue: description: Optional....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

          <superClass>Repository</superClass>
          <version>4.0.0+</version>
          <description>Deployment repository contains the information needed for deploying to the remote
            repository, which adds uniqueVersion property to usual repositories for download.</description>
          <fields>
            <field>
              <name>uniqueVersion</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

          newEntry.setValueReference(valueReference.copyFor(this.valueReferenceQueue, value, newEntry));
          return newEntry;
        }
    
        /** Sets a new value of an entry. Adds newly created entries at the end of the access queue. */
        @GuardedBy("this")
        void setValue(ReferenceEntry<K, V> entry, K key, V value, long now) {
          ValueReference<K, V> previous = entry.getValueReference();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top