Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,967 for Size (0.15 sec)

  1. src/internal/trace/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc.test

    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=23
    ProcStatus dt=1 p=1 pstatus=2
    ProcStatus dt=1 p=0 pstatus=1
    GoStatus dt=1 g=1 m=0 gstatus=2
    GoSyscallBegin dt=1 p_seq=1 stack=0
    ProcStart dt=1 p=1 p_seq=1
    GoSyscallEndBlocked dt=1
    EventBatch gen=1 m=1 time=0 size=14
    ProcStatus dt=1 p=2 pstatus=1
    GoStatus dt=1 g=2 m=1 gstatus=2
    ProcSteal dt=1 p=0 p_seq=2 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
    - 592 bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-syscall-steal-proc-simple-bare-m.test

    SUCCESS
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=15
    ProcStatus dt=1 p=0 pstatus=1
    GoStatus dt=1 g=1 m=0 gstatus=2
    GoSyscallBegin dt=1 p_seq=1 stack=0
    GoSyscallEndBlocked dt=1
    EventBatch gen=1 m=1 time=0 size=5
    ProcSteal dt=1 p=0 p_seq=2 m=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 472 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

        color:var(--link-color-active);
    }
    pre {
        font-family:var(--code-font-family);
        font-size:1em;
    }
    h1 {
        font-size:1.428em;
    }
    h2 {
        font-size:1.285em;
    }
    h3 {
        font-size:1.14em;
    }
    h4 {
        font-size:1.072em;
    }
    h5 {
        font-size:1.001em;
    }
    h6 {
        font-size:0.93em;
    }
    /* Disable font boosting for selected elements */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    	w.Flush()
    	return nil
    }
    
    func encodedSize(e *raw.Event) int {
    	size := 1
    	var buf [binary.MaxVarintLen64]byte
    	for _, arg := range e.Args {
    		size += binary.PutUvarint(buf[:], arg)
    	}
    	spec := e.Version.Specs()[e.Ev]
    	if spec.HasData {
    		size += binary.PutUvarint(buf[:], uint64(len(e.Data)))
    		size += len(e.Data)
    	}
    	return size
    }
    
    type countingReader struct {
    	io.Reader
    	bytesRead int
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/base/tests/tensor_test.cc

      EXPECT_EQ(tensor_view[0], 42);
      EXPECT_EQ(tensor_view[1], 100);
      EXPECT_EQ(tensor_view[2], 0);
      EXPECT_EQ(tensor_view[3], 1);
      EXPECT_EQ(tensor_view[4], 4);
      EXPECT_EQ(tensor_view[5], 29);
    
      EXPECT_EQ(tensor.num_bytes(),
                value.size() * sizeof(typename TypeParam::type));
      EXPECT_EQ(tensor.num_elements(), value.size());
    }
    
    template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
            messages[1] == "It works from project :a"
            def model = models.right
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/go/token/position.go

    	// Allocate f outside the critical section.
    	f := &File{name: filename, size: size, lines: []int{0}}
    
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    	if base < 0 {
    		base = s.base
    	}
    	if base < s.base {
    		panic(fmt.Sprintf("invalid base %d (should be >= %d)", base, s.base))
    	}
    	f.base = base
    	if size < 0 {
    		panic(fmt.Sprintf("invalid size %d (should be >= 0)", size))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. src/runtime/traceallocfree.go

    	return traceArg(uint64(base)-trace.minPageHeapAddr) / fixedStack
    }
    
    // traceCompressStackSize assumes size is a power of 2 and returns log2(size).
    func traceCompressStackSize(size uintptr) traceArg {
    	if size&(size-1) != 0 {
    		throw("goroutine stack size is not a power of 2")
    	}
    	return traceArg(sys.Len64(uint64(size)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

                           int64_t axis) {
        assert(shape.size() == index.size());
        assert(axis < shape.size());
        assert(axis >= 0);
        assert(index[axis] == 0);
        offset_ = IndexToOffset(shape, index);
        stride_ = StrideForAxis(shape, axis);
        size_ = shape[axis];
      }
    
      // Returns the size of the 1-d slice across the tensor.
      int64_t size() const { return size_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolverTest.java

            assertEquals(4, res.getVertices().size(), "wrong # of vertices in the resulting graph after resolver");
            assertEquals(
                    2,
                    res.getExcidentEdges(v1).size(),
                    "wrong # of excident edges in the resulting graph entry after resolver");
    
            assertEquals(
                    1,
                    res.getIncidentEdges(v2).size(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top