Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 131 for nextar (0.14 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

            int nextChar = next();
            if (nextChar == '\n') {
                return true; // '\\\n' discarded from stream
            } else if (nextChar == '\r') {
                int followingChar = next();
                if (followingChar == '\n') {
                    return true; // '\\\r\n' discarded from stream
                }
                pushBack(nextChar);
                pushBack(followingChar);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/rangefunc/rewrite.go

    	}
    	setValueType(callPanicExpr, nil) // no result type
    	return &syntax.ExprStmt{X: callPanicExpr}
    }
    
    // next returns a reference to the #next variable.
    func (r *rewriter) next() *syntax.Name {
    	if r.nextVar == nil {
    		r.nextVar = r.declVar("#next", r.int.Type(), nil)
    	}
    	return r.useObj(r.nextVar)
    }
    
    // forRangeFunc checks whether n is a range-over-func.
    // If so, it returns n.(*syntax.ForStmt), true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build_test.go

    		{[]byte(`-lextra\ fun\ arg\\`), []string{`-lextra fun arg\`}},
    		{[]byte("\textra     whitespace\r\n"), []string{"extra", "whitespace\r"}},
    		{[]byte("     \r\n      "), []string{"\r"}},
    		{[]byte(`"-r:foo" "-L/usr/white space/lib" "-lfoo bar" "-lbar baz"`), []string{"-r:foo", "-L/usr/white space/lib", "-lfoo bar", "-lbar baz"}},
    		{[]byte(`"-lextra fun arg\\"`), []string{`-lextra fun arg\`}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. src/runtime/debug/garbage_test.go

    		t.Fatalf("failed to set up baseline live heap; got %d MB, want %d MB", ms.Alloc>>20, baseline>>20)
    	}
    	// NextGC should be ~200 MB.
    	const thresh = 20 << 20 // TODO: Figure out why this is so noisy on some builders
    	if want := int64(2 * baseline); abs64(want-int64(ms.NextGC)) > thresh {
    		t.Errorf("NextGC = %d MB, want %d±%d MB", ms.NextGC>>20, want>>20, thresh>>20)
    	}
    	// Create some garbage, but not enough to trigger another GC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. pkg/ctrlz/topics/assets/templates/mem.html

            <td>StackSys</td>
            <td id="StackSys">{{.StackSys}} bytes</td>
            <td>Stack memory obtained from the OS.</td>
        </tr>
    
        <tr>
            <td>NextGC</td>
            <td id="NextGC">{{.NextGC}} bytes</td>
            <td>Target heap size of the next GC cycle.</td>
        </tr>
    
        <tr>
            <td>LastGC</td>
            <td id="LastGC"></td>
            <td>The time the last garbage collection finished.</td>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    // callsite: returns2.go:19:13|0 flagstr "" flagval 0 score 1 mask 16384 maskstr "returnFeedsConcreteToInterfaceCallAdj"
    // <endcallsites>
    // <endfuncpreamble>
    func T_return_feeds_iface_call() {
    	b := newBar(10)
    	b.Plark()
    }
    
    // returns2.go T_multi_return_feeds_iface_call 29 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":null,"ResultFlags":null}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. docs/zh/docs/tutorial/extra-models.md

    jaystone776 <******@****.***> 1711934153 +0800
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 01 01:15:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/shell_test.go

    	f.Add([]byte(`-r:foo -L/usr/white\ space/lib -lfoo\ bar -lbar\ baz`))
    	f.Add([]byte(`-lextra\ fun\ arg\\`))
    	f.Add([]byte("\textra     whitespace\r"))
    	f.Add([]byte("     \r      "))
    	f.Add([]byte(`"-r:foo" "-L/usr/white space/lib" "-lfoo bar" "-lbar baz"`))
    	f.Add([]byte(`"-lextra fun arg\\"`))
    	f.Add([]byte(`"     \r\n\      "`))
    	f.Add([]byte(`""`))
    	f.Add([]byte(``))
    	f.Add([]byte(`"\\"`))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/extra-models.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/extra-models.md

    So, we get a Pydantic model from the data in another Pydantic model.
    
    #### Unwrapping a `dict` and extra keywords
    
    And then adding the extra keyword argument `hashed_password=hashed_password`, like in:
    
    ```Python
    UserInDB(**user_in.dict(), hashed_password=hashed_password)
    ```
    
    ...ends up being like:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top