Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,255 for yearly (0.15 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseWtpFacet.java

    import javax.inject.Inject;
    
    /**
     * Generates the org.eclipse.wst.common.project.facet.core settings file for Eclipse WTP.
     * If you want to fine tune the eclipse configuration
     * <p>
     * At this moment nearly all configuration is done via {@link EclipseWtpFacet}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseWtpFacet extends XmlGeneratorTask<WtpFacet> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    Continuous improvement combined with frequent delivery allows new features to be available to users early.
    Early users provide invaluable feedback, which is incorporated into the development process.
    
    Getting new functionality into the hands of users regularly is a core value of the Gradle platform.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/assign.go

    			}
    			return false
    		})
    	}
    
    	// If a needed expression may be affected by an
    	// earlier assignment, make an early copy of that
    	// expression and use the copy instead.
    	var early ir.Nodes
    	save := func(np *ir.Node) {
    		if n := *np; affected(n) {
    			*np = copyExpr(n, n.Type(), &early)
    		}
    	}
    
    	var late ir.Nodes
    	for i, lorig := range nl {
    		l, r := lorig, nr[i]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_test.cc

          BlankLine();
          BlockOpen("void TestFunction()");
          {
            Statement("int i = 1");
            BlankLine();
            BlockOpen("while (i == 1)");
            {
              CommentLine("Do nothing, really....");
              CodeLine("#if 0");
              Statement("call()");
              CodeLine("#endif");
              BlockClose();
            }
            BlockClose("  // comment ending TestFunction");
          }
        }
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/vendor_import.txt

    -- vend/good.go --
    package vend
    
    import _ "p"
    -- vend/hello/hello.go --
    package main
    
    import (
    	"fmt"
    	"strings" // really ../vendor/strings
    )
    
    func main() {
    	fmt.Printf("%s\n", strings.Msg)
    }
    -- vend/hello/hello_test.go --
    package main
    
    import (
    	"strings" // really ../vendor/strings
    	"testing"
    )
    
    func TestMsgInternal(t *testing.T) {
    	if strings.Msg != "hello, world" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 21:14:01 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. guava-gwt/src/com/google/common/html/Html.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. guava-gwt/src/com/google/common/primitives/Primitives.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.h

    namespace tflite {
    
    int8_t ConvertBuiltinCodeToDeprecatedBuiltinCode(
        const BuiltinOperator builtin_code);
    
    // The following methods are for backward compatibility for the early version
    // three, which does not have an extended builtin code.
    flatbuffers::Offset<OperatorCode> CreateOperatorCode(
        flatbuffers::FlatBufferBuilder &_fbb,
        BuiltinOperator builtin_code = BuiltinOperator_ADD,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/net/port.go

    // parse service as a non-decimal integer when needsLookup is true.
    //
    // Some system resolvers will return a valid port number when given a number
    // over 65536 (see https://golang.org/issues/11715). Alas, the parser
    // can't bail early on numbers > 65536. Therefore reasonably large/small
    // numbers are parsed in full and rejected if invalid.
    func parsePort(service string) (port int, needsLookup bool) {
    	if service == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:56 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/atmostevery.go

    func NewAtMostEvery(delay time.Duration) *AtMostEvery {
    	return &AtMostEvery{
    		delay: delay,
    	}
    }
    
    // updateLastCall returns true if the lastCall time has been updated,
    // false if it was too early.
    func (s *AtMostEvery) updateLastCall() bool {
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    	if time.Since(s.lastCall) < s.delay {
    		return false
    	}
    	s.lastCall = time.Now()
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top