Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 119 for better (0.14 sec)

  1. src/go/build/build.go

    // about the requested package and all dependencies and then only reports about the requested package.
    // Then we reinvoke it for every dependency. But this is still better than not working at all.
    // See golang.org/issue/26504.
    func (ctxt *Context) importGo(p *Package, path, srcDir string, mode ImportMode) error {
    	// To invoke the go command,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

          ListenableFuture<? extends V>... futures) {
        /*
         * Another way to express this signature would be to bound <V> by @NonNull and accept
         * LF<? extends @Nullable V>. That might be better: There's currently no difference between the
         * outputs users get when calling this with <Foo> and calling it with <@Nullable Foo>. The only
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Parses 'str' for a 32-bit signed integer.  If successful, writes the result
    // to *value and returns true; otherwise leaves *value unchanged and returns
    // false.
    // TODO(chandlerc): Find a better way to refactor flag and environment parsing
    // out of both gtest-port.cc and gtest.cc to avoid exporting this utility
    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    				// redundant copy regardless of its version.
    				//
    				// When we read the full module graph, we include the dependencies of
    				// every root even if that root is redundant. That better preserves
    				// reproducibility if, say, some automated tool adds a redundant
    				// 'require' line and then runs 'go mod tidy' to try to make everything
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

     * URLs that represent servers, shares, or directories require a trailing slash '/'.
     * </td>
     * </tr>
     *
     * </table>
     * 
     * <p>
     * A second constructor argument may be specified to augment the URL
     * for better programmatic control when processing many files under
     * a common base. This is slightly different from the corresponding
     * <code>java.io.File</code> usage; a '/' at the beginning of the second
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/ssa/debug.go

    			state.vars = append(state.vars, topSlot.N)
    		}
    		state.varParts[topSlot.N] = append(state.varParts[topSlot.N], SlotID(i))
    	}
    
    	// Recreate the LocalSlot for each stack-only variable.
    	// This would probably be better as an output from stackframe.
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Op == OpVarDef {
    				n := v.Aux.(*ir.Name)
    				if ir.IsSynthetic(n) {
    					continue
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    	// There is sometimes work left over when we enter mark termination due
    	// to write barriers performed after the completion barrier above.
    	// Detect this and resume concurrent mark. This is obviously
    	// unfortunate.
    	//
    	// See issue #27993 for details.
    	//
    	// Switch to the system stack to call wbBufFlush1, though in this case
    	// it doesn't matter because we're non-preemptible anyway.
    	restart := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Parses 'str' for a 32-bit signed integer.  If successful, writes the result
    // to *value and returns true; otherwise leaves *value unchanged and returns
    // false.
    // TODO(chandlerc): Find a better way to refactor flag and environment parsing
    // out of both gtest-port.cc and gtest.cc to avoid exporting this utility
    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    		ConfigsUpdated: sets.Set[ConfigKey]{
    			{Kind: kind.Secret}: {},
    		},
    	}); err != nil {
    		t.Fatal(err)
    	}
    
    	// Check to ensure the update is identical to the old one
    	// There is probably a better way to do this.
    	diff := cmp.Diff(old, newPush,
    		// Allow looking into exported fields for parts of push context
    		cmp.AllowUnexported(PushContext{}, exportToDefaults{}, serviceIndex{}, virtualServiceIndex{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property."$setter"(providerWithSideEffect)
    
            property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            property.calculateExecutionTimeValue()
    
            then:
            0 * _ // no side effects when calling setter or calculated values are not unpacked
    
            when:
            def unpackedValue = getter(property, getter, someOtherValue())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top