Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for addsym (0.15 sec)

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

    }
    
    // Add a symbol from an object file, return the global index.
    // If the symbol already exist, it returns the index of that symbol.
    func (st *loadState) addSym(name string, ver int, r *oReader, li uint32, kind int, osym *goobj.Sym) Sym {
    	l := st.l
    	if l.extStart != 0 {
    		panic("addSym called after external symbol is created")
    	}
    	i := Sym(len(l.objSyms))
    	if int(i) != len(l.objSyms) { // overflow
    		panic("too many symbols")
    	}
    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. src/time/time.go

    	}
    	return t.ext
    }
    
    // unixSec returns the time's seconds since Jan 1 1970 (Unix time).
    func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
    
    // addSec adds d seconds to the time.
    func (t *Time) addSec(d int64) {
    	if t.wall&hasMonotonic != 0 {
    		sec := int64(t.wall << 1 >> (nsecShift + 1))
    		dsec := sec + d
    		if 0 <= dsec && dsec <= 1<<33-1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. src/time/format.go

    	}
    
    	if z != nil {
    		return Date(year, Month(month), day, hour, min, sec, nsec, z), nil
    	}
    
    	if zoneOffset != -1 {
    		t := Date(year, Month(month), day, hour, min, sec, nsec, UTC)
    		t.addSec(-int64(zoneOffset))
    
    		// Look for local zone with the given offset.
    		// If that zone was in effect at the given time, use it.
    		name, offset, _, _, _ := local.lookup(t.unixSec())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (XORLload x [off] {sym} ptr (MOVSSstore [off] {sym} ptr y _)) => (XORL x (MOVLf2i y))
    
    (ADDSDload x [off] {sym} ptr (MOVQstore [off] {sym} ptr y _)) => (ADDSD x (MOVQi2f y))
    (ADDSSload x [off] {sym} ptr (MOVLstore [off] {sym} ptr y _)) => (ADDSS x (MOVLi2f y))
    (SUBSDload x [off] {sym} ptr (MOVQstore [off] {sym} ptr y _)) => (SUBSD x (MOVQi2f y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_function_test.cc

      VerifyFDef({"add"}, M({{"feed1"}, {"feed2"}}), M({{"out1"}, {"out2"}}),
                 {{"feed1", "add:0"},
                  {"feed2", "add:1"},
                  {"add:sum:0", "out1"},
                  {"add:sum:0", "out2"}},
                 {});
    }
    
    TEST_F(CApiFunctionTest, TwoOps_ThreeInputs_TwoOutputs) {
      /*
       *                  |  |  |
       *                  v  v  /
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            output.contains("result = [lib2-5.6.jar.txt, lib1-1.3.jar.txt]")
        }
    
        @ToBeFixedForConfigurationCache(because = "treating file collection visit failures as a configuration cache problem adds an additional failure to the build summary")
        def "transform does not execute when dependencies cannot be found"() {
            given:
            mavenHttpRepo.module("unknown", "not-found", "4.3").allowAll().assertNotPublished()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    			root := ld.pkg(ctx, path, pkgIsRoot)
    			if !inRoots[root] {
    				ld.roots = append(ld.roots, root)
    				inRoots[root] = true
    			}
    		}
    
    		// ld.pkg adds imported packages to the work queue and calls applyPkgFlags,
    		// which adds tests (and test dependencies) as needed.
    		//
    		// When all of the work in the queue has completed, we'll know that the
    		// transitive closure of dependencies has been loaded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// the claim cannot be shared.
    	//
    	// Note that this also works when the allocation result gets added twice because
    	// two pods both started using a shared claim: the first pod to get here adds the
    	// allocation result. The second pod then only adds itself to reservedFor.
    	patch := fmt.Sprintf(`{"metadata": {"uid": %q}, "status": {%s "reservedFor": [ {"resource": "pods", "name": %q, "uid": %q} ] }}`,
    		claim.UID,
    		allocationPatch,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    +
    While it applies the Java Plugin, it behaves slightly different (e.g. it adds the `api` configuration).
    Thus, make sure to check whether your build behaves as expected after upgrading.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top