Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for plats (0.33 sec)

  1. src/cmd/compile/internal/staticinit/sched.go

    	}
    
    	if base.Flag.Percent != 0 {
    		ir.Dump("not static", r)
    	}
    	return false
    }
    
    func (s *Schedule) initplan(n ir.Node) {
    	if s.Plans[n] != nil {
    		return
    	}
    	p := new(Plan)
    	s.Plans[n] = p
    	switch n.Op() {
    	default:
    		base.Fatalf("initplan")
    
    	case ir.OARRAYLIT, ir.OSLICELIT:
    		n := n.(*ir.CompLitExpr)
    		var k int64
    		for _, a := range n.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. ci/official/utilities/rename_and_verify_wheels.sh

      ls -t *.whl | tail -n +2 | xargs mv -t $TFCI_OUTPUT_DIR/extra_wheels
    fi
    
    # Repair wheels with auditwheel and delete the old one.
    if [[ "$TFCI_WHL_AUDIT_ENABLE" == "1" ]]; then
      python3 -m auditwheel repair --plat "$TFCI_WHL_AUDIT_PLAT" --wheel-dir . *.whl
      # if the wheel is already named correctly, auditwheel won't rename it. so we
      # list all .whl files by their modification time (ls -t) and delete anything
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

            mavenRepo.module("test", "module1", "11.1.0.1").publish()
    
            settingsFile << "include 'plat'"
            file("plat/build.gradle") << """
                plugins {
                    id("java-platform")
                }
    
                dependencies {
                    constraints {
                        api "test:module1:11.1.0.1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                        if (details.source.allExecutionComplete()) {
                            iterator.remove();
                        }
                        // Else, leave the plan in the set of plans so that it can participate in health monitoring. It will be garbage collected once complete
                    } else if (state == WorkSource.State.MaybeWorkReadyToStart) {
                        return WorkSource.State.MaybeWorkReadyToStart;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. README.md

    If your company wants to help shape the evolution of
    technologies that are container-packaged, dynamically scheduled,
    and microservices-oriented, consider joining the CNCF.
    For details about who's involved and how Kubernetes plays a role,
    read the CNCF [announcement].
    
    ----
    
    ## To start using K8s
    
    See our documentation on [kubernetes.io].
    
    Take a free course on [Scalable Microservices with Kubernetes].
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/mdo/reader-stax.vm

          #set ( $dummy = $flats.put( $fieldTagName, "" ) )
        #end
      #end
    #end
    #if ( ! ${aliases.isEmpty()} )
            switch (tagName) {
      #foreach( $entry in $aliases.entrySet() )
            case "${entry.key}":
                tagName = "${entry.value}";
                break;
      #end
            }
    #end
    #if ( ! ${flats.isEmpty()} )
            switch (tagName) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

        	// reviewer 2:
        	result += "{";
        	result += "  \"reviewer\": \"Reviewer2\",";
        	result += "  \"text\": \"Absolutely fun and entertaining. The play lacks thematic depth when compared to other plays by Shakespeare.\"";
          if (ratings_enabled) {
            if (starsReviewer2 != -1) {
              result += ", \"rating\": {\"stars\": " + starsReviewer2 + ", \"color\": \"" + star_color + "\"}";
            }
            else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

         */
        void prepareToScheduleTasks();
    
        /**
         * Creates a new work plan for this build. This method can be called multiple times to create multiple plans.
         */
        BuildWorkPlan newWorkGraph();
    
        /**
         * Populates the given work plan with tasks and work from this build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. src/mdo/reader.vm

          #set ( $dummy = $flats.put( $fieldTagName, "" ) )
        #end
      #end
    #end
    #if ( ! ${aliases.isEmpty()} )
            switch (tagName) {
      #foreach( $entry in $aliases.entrySet() )
                case "${entry.key}":
                    tagName = "${entry.value}";
                    break;
      #end
            }
    #end
    #if ( ! ${flats.isEmpty()} )
            switch (tagName) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  10. docs/features/connections.md

    Connections
    ===========
    
    Although you provide only the URL, OkHttp plans its connection to your webserver using three types: URL, Address, and Route.
    
    ### [URLs](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-http-url/)
    
    URLs (like `https://github.com/square/okhttp`) are fundamental to HTTP and the Internet. In addition to being a universal, decentralized naming scheme for everything on the web, they also specify how to access web resources.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top