Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 322 for maddld (0.29 sec)

  1. src/go/printer/testdata/comments.input

    */
    
    /* a line of stars
     */
    
    /*	and another line of
     */
    
    /*
    aligned in middle
    here
            not here
    */
    
    /*
    blank line in middle:
    
    with no leading spaces on blank line.
    */
    
    /*
       aligned in middle
       here
               not here
    */
    
    /*
    	blank line in middle:
    
    	with no leading spaces on blank line.
    */
    
    func _() {
    	/*
    	 * line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  2. src/container/list/list_test.go

    	checkListPointers(t, l, []*Element{e1, e2, e3, e4})
    
    	l.Remove(e2)
    	checkListPointers(t, l, []*Element{e1, e3, e4})
    
    	l.MoveToFront(e3) // move from middle
    	checkListPointers(t, l, []*Element{e3, e1, e4})
    
    	l.MoveToFront(e1)
    	l.MoveToBack(e3) // move from middle
    	checkListPointers(t, l, []*Element{e1, e4, e3})
    
    	l.MoveToFront(e3) // move from back
    	checkListPointers(t, l, []*Element{e3, e1, e4})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  3. test/typeparam/listimp2.dir/main.go

    	l2.Remove(e2)
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e3, e4})
    
    	l2.MoveToFront(e3) // move from middle
    	a.CheckListPointers(l2, []*(a.Element[int]){e3, e1, e4})
    
    	l2.MoveToFront(e1)
    	l2.MoveToBack(e3) // move from middle
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3})
    
    	l2.MoveToFront(e3) // move from back
    	a.CheckListPointers(l2, []*(a.Element[int]){e3, e1, e4})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            ivyRepo.module("org", "middle", "1.0")
                .dependsOn("org", "leaf", "1.0")
                .dependsOn("org", "leaf", "[1.0,2.0]")
                .dependsOn("org", "leaf", "latest.integration")
                .publish()
            ivyRepo.module("org", "top", "1.0")
                .dependsOn("org", "middle", "1.0")
                .dependsOn("org", "middle", "[1.0,2.0]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. src/go/ast/walk_test.go

    package ast_test
    
    import (
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"testing"
    )
    
    func TestPreorderBreak(t *testing.T) {
    	// This test checks that Preorder correctly handles a break statement while
    	// in the middle of walking a node. Previously, incorrect handling of the
    	// boolean returned by the yield function resulted in the iterator calling
    	// yield for sibling nodes even after yield had returned false. With that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 916 bytes
    - Viewed (0)
  6. tests/test_tutorial/test_configure_swagger_ui/test_tutorial002.py

        assert (
            '"syntaxHighlight": false' not in response.text
        ), "not used parameters should not be included"
        assert (
            '"syntaxHighlight.theme": "obsidian"' in response.text
        ), "parameters with middle dots should be included in a JSON compatible way"
        assert (
            '"dom_id": "#swagger-ui"' in response.text
        ), "default configs should be preserved"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/tfe_tensor_debug_info_internal.h

    #include <vector>
    
    #include "tensorflow/core/platform/types.h"
    
    struct TFE_TensorDebugInfo {
      explicit TFE_TensorDebugInfo(const std::vector<int64_t>& dims)
          : dev_dims(dims) {}
    
      // Fully-padded, minor-to-major.
      std::vector<int64_t> dev_dims;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_aix_ppc64.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
     * On AIX, call to _cgo_topofstack and Go main are forced to be a longcall.
     * Without it, ld might add trampolines in the middle of .text section
     * to reach these functions which are normally declared in runtime package.
     */
    extern int __attribute__((longcall)) __cgo_topofstack(void);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/go/doc/testdata/a0.go

    //NOTE(uid):
    
    // SECBUG(uid): sec hole 0
    // need to fix asap
    
    // Multiple notes may be in the same comment group and should be
    // recognized individually. Notes may start in the middle of a
    // comment group as long as they start at the beginning of an
    // individual comment.
    //
    // NOTE(foo): 1 of 4 - this is the first line of note 1
    // - note 1 continues on this 2nd line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  10. test/codegen/floats.go

    // --------------------- //
    //    Strength-reduce    //
    // --------------------- //
    
    func Mul2(f float64) float64 {
    	// 386/sse2:"ADDSD",-"MULSD"
    	// amd64:"ADDSD",-"MULSD"
    	// arm/7:"ADDD",-"MULD"
    	// arm64:"FADDD",-"FMULD"
    	// ppc64x:"FADD",-"FMUL"
    	// riscv64:"FADDD",-"FMULD"
    	return f * 2.0
    }
    
    func DivPow2(f1, f2, f3 float64) (float64, float64, float64) {
    	// 386/sse2:"MULSD",-"DIVSD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top