Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,721 for Size (0.12 sec)

  1. src/runtime/cgo/gcc_stack_unix.c

    	pthread_attr_getstack(&attr, &addr, &size); // low address
    #elif defined(__illumos__)
    	pthread_attr_get_np(pthread_self(), &attr);
    	pthread_attr_getstack(&attr, &addr, &size); // low address
    #else
    	// We don't know how to get the current stacks, so assume they are the
    	// same as the default stack bounds.
    	pthread_attr_getstacksize(&attr, &size);
    	addr = __builtin_frame_address(0) + 4096 - size;
    #endif
    	pthread_attr_destroy(&attr);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 03:44:11 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        return push.emitError("cannot push on a fixed-size tensor list");
      }
      auto size = it->getSecond().size;
      OpBuilder builder(push);
      auto new_buffer =
          cutil::SetElement(size, buffer, push.getTensor(), builder, push.getLoc());
      auto new_size = builder.create<TF::AddV2Op>(
          push.getLoc(), ArrayRef<Type>{size.getType()},
          ArrayRef<Value>{size, cutil::GetR1Const({1LL}, builder, push.getLoc())});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/tests/go122-syscall-steal-proc-ambiguous.test

    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=21
    ProcStatus dt=0 p=0 pstatus=1
    GoStatus dt=0 g=1 m=0 gstatus=2
    GoSyscallBegin dt=0 p_seq=1 stack=0
    GoSyscallEnd dt=0
    GoSyscallBegin dt=0 p_seq=2 stack=0
    GoSyscallEndBlocked dt=0
    EventBatch gen=1 m=1 time=0 size=14
    ProcStatus dt=0 p=2 pstatus=1
    GoStatus dt=0 g=2 m=1 gstatus=2
    ProcSteal dt=0 p=0 p_seq=3 m=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 589 bytes
    - Viewed (0)
  4. src/crypto/internal/bigmod/nat.go

    		return errors.New("input overflows the modulus size")
    	}
    	return nil
    }
    
    // Equal returns 1 if x == y, and 0 otherwise.
    //
    // Both operands must have the same announced length.
    func (x *Nat) Equal(y *Nat) choice {
    	// Eliminate bounds checks in the loop.
    	size := len(x.limbs)
    	xLimbs := x.limbs[:size]
    	yLimbs := y.limbs[:size]
    
    	equal := yes
    	for i := 0; i < size; i++ {
    		equal &= ctEq(xLimbs[i], yLimbs[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingModelsWithDependencyResolutionIntegrationTest.groovy

                plugins.apply(my.MyPlugin)
            """
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model.size() == 4
            model[0].message == "project :a classpath = 2"
            model[1].message == "project :b classpath = 1"
            model[2].message == "project :c classpath = 0"
            model[3].message == "project :d classpath = 0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r49/ToolingApiEclipseModelProjectCrossVersionSpec.groovy

            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
            project.projectNatures.size() == 1
            project.projectNatures[0].id.contains('javanature')
            project.buildCommands.size() == 1
            project.buildCommands[0].name.contains('javabuilder')
        }
    
        def "EclipseProject attributes defined"() {
            buildFile <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSignatureContractsTest.kt

                }
                val combinations = buildList { combinations(typesToCheckOn, persistentListOf(), typeParameters.size) }
                check(combinations.size == typesToCheckOn.size.toDouble().pow(typeParameters.size).toInt())
                val allSubstitutors = buildList {
                    combinations.forEach { typesPermutation ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. pkg/util/tail/tail.go

    	f, err := os.Open(path)
    	if err != nil {
    		return nil, false, err
    	}
    	defer f.Close()
    	fi, err := f.Stat()
    	if err != nil {
    		return nil, false, err
    	}
    	size := fi.Size()
    	if size == 0 {
    		return nil, false, nil
    	}
    	if size < max {
    		max = size
    	}
    	offset, err := f.Seek(-max, io.SeekEnd)
    	if err != nil {
    		return nil, false, err
    	}
    	data, err := io.ReadAll(f)
    	return data, offset > 0, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-create-syscall-reuse-thread-id.test

    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 652 bytes
    - Viewed (0)
  10. src/archive/tar/writer.go

    				spb = append(spb, spHdr[:]...)
    			}
    
    			// Update size fields in the header block.
    			realSize := hdr.Size
    			hdr.Size = 0 // Encoded size; does not account for encoded sparse map
    			for _, s := range spd {
    				hdr.Size += s.Length
    			}
    			copy(blk.V7().Size(), zeroBlock[:]) // Reset field
    			f.formatNumeric(blk.V7().Size(), hdr.Size)
    			f.formatNumeric(blk.GNU().RealSize(), realSize)
    		}
    	*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top