Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,227 for STARTING (0.16 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonHealthLoggingIntegrationTest.groovy

        def "health information is present in build log"() {
            when:
            def result = succeeds("help", "--info")
    
            then:
            result.output ==~ /(?s).*Starting build in new daemon \[memory: [0-9].*/
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1018 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

      def get_min_max_value(self) -> tuple[float, float]:
        """Finds min and max starting from the center index.
    
        The HistogramMseSymmetric method starts from the center bin and expands the
        range to both sides. This works better when the data is well-centered.
    
        Returns:
          (min_value, max_value): Min and max calculated using the method starting
          from center and expanding.
        """
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/FinalizableReference.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface FinalizableReference {
      /**
       * Invoked on a background thread after the referent has been garbage collected unless security
       * restrictions prevented starting a background thread, in which case this method is invoked when
       * new references are created.
       */
      void finalizeReferent();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. test/chan/sieve2.go

    package main
    
    import (
    	"container/heap"
    	"container/ring"
    )
    
    // Return a chan of odd numbers, starting from 5.
    func odds() chan int {
    	out := make(chan int, 50)
    	go func() {
    		n := 5
    		for {
    			out <- n
    			n += 2
    		}
    	}()
    	return out
    }
    
    // Return a chan of odd multiples of the prime number p, starting from p*p.
    func multiples(p int) chan int {
    	out := make(chan int, 10)
    	go func() {
    		n := p * p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginSpecBuilderAccessorsClassPathTest.kt

                        @org.gradle.api.Generated
                        class `MyPluginGroup`(internal val plugins: PluginDependenciesSpec)
    
    
                        /**
                         * Plugin ids starting with `my`.
                         */
                        val `PluginDependenciesSpec`.`my`: `MyPluginGroup`
                            get() = `MyPluginGroup`(this)
    
    
                        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. samples/jwt-server/src/main.go

    	if err != nil {
    		log.Fatalf("Failed to create HTTP server: %v", err)
    	}
    	// Store the port for test only.
    	s.httpPort <- listener.Addr().(*net.TCPAddr).Port
    	s.httpServer = &http.Server{Handler: s}
    
    	log.Printf("Starting HTTP server at %s", listener.Addr())
    	if err := s.httpServer.Serve(listener); err != nil {
    		log.Fatalf("Failed to start HTTP server: %v", err)
    	}
    }
    
    func (s *JWTServer) startHTTPS(address string, wg *sync.WaitGroup) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 16 23:56:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/kotlin/build.gradle.kts

                includeGroup("my.company")
            }
        }
        mavenCentral {
            content {
                // this repository contains everything BUT artifacts with group starting with "my.company"
                excludeGroupByRegex("my\\.company.*")
            }
        }
    }
    // end::repository-filter[]
    
    // tag::exclusive-repository-filter[]
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/groovy/build.gradle

                includeGroup "my.company"
            }
        }
        mavenCentral {
            content {
                // this repository contains everything BUT artifacts with group starting with "my.company"
                excludeGroupByRegex "my\\.company.*"
            }
        }
    }
    // end::repository-filter[]
    
    // tag::exclusive-repository-filter[]
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/testdata/versions/test.go

    //
    // In the testdata/versions:
    //
    // go build -o test_go1.$X_$Y.a test.go
    //
    // with $X = Go version and $Y = export format version
    // (add 'b' or 'i' to distinguish between binary and
    // indexed format starting with 1.11 as long as both
    // formats are supported).
    //
    // Make sure this source is extended such that it exercises
    // whatever export format change has taken place.
    
    package test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 13 04:39:18 UTC 2018
    - 918 bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/validation.go

    	}
    
    	s.readinessFlags.configValidationReady.Store(true)
    
    	if features.ValidationWebhookConfigName != "" && s.kubeClient != nil {
    		s.addStartFunc("validation controller", func(stop <-chan struct{}) error {
    			log.Infof("Starting validation controller")
    			go controller.NewValidatingWebhookController(
    				s.kubeClient, args.Revision, args.Namespace, s.istiodCertBundleWatcher).Run(stop)
    			return nil
    		})
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top