Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,237 for startingAt (0.3 sec)

  1. 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)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  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. 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)
  9. pkg/proxy/healthcheck/proxier_health.go

    		healthTimeout: healthTimeout,
    
    		lastUpdatedMap:         make(map[v1.IPFamily]time.Time),
    		oldestPendingQueuedMap: make(map[v1.IPFamily]time.Time),
    		// The node is eligible (and thus the proxy healthy) while it's starting up
    		// and until we've processed the first node event that indicates the
    		// contrary.
    		nodeEligible: true,
    	}
    }
    
    // Updated should be called when the proxier of the given IP family has successfully updated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/StaleDaemonAddressException.java

    /**
     * Thrown when connected to a stale daemon address.
     *
     * This is thrown instead of using an initial handshake on the connection, to avoid the latency of a round trip to the
     * daemon before starting the build.
     */
    public class StaleDaemonAddressException extends DaemonConnectionException {
        public StaleDaemonAddressException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top