Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 941 for Starting (0.27 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/custom_call.h

      LogicalResult matchAndRewrite(
          mhlo::CustomCallOp mhlo_custom_call, OpAdaptor adaptor,
          ConversionPatternRewriter& rewriter) const final;
    };
    
    // Ops that have a call_target_name starting with the prefix "custom_call." and
    // backend_config of type StringAttr (if specified) should be legalized (i.e.
    // considered to be illegal if still present after this pass is complete).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 02:41:24 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    	m.registerControlFunc = f
    }
    
    // Start starts the gRPC server of the device plugin. Can only
    // be called once.
    func (m *Stub) Start() error {
    	klog.InfoS("Starting device plugin server")
    	err := m.cleanup()
    	if err != nil {
    		return err
    	}
    
    	sock, err := net.Listen("unix", m.socket)
    	if err != nil {
    		return err
    	}
    
    	m.wg.Add(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/escape/Platform.java

        return requireNonNull(DEST_TL.get());
      }
    
      /**
       * A thread-local destination buffer to keep us from creating new buffers. The starting size is
       * 1024 characters. If we grow past this we don't put it back in the threadlocal, we just keep
       * going and grow as needed.
       */
      private static final ThreadLocal<char[]> DEST_TL =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/spring-boot-web-application/README.adoc

      '  |____| .__|_| |_|_| |_\__, | / / / /
     =========|_|==============|___/=/_/_/_/
     :: Spring Boot ::        (v2.2.1.RELEASE)
    
    2019-11-12 22:14:43.819  INFO 1389 --- [           main] o.g.samples.SpringBootDemoApplication    : Starting SpringBootDemoApplication on localhost with PID 1389 (/home/user/build/classes/java/main started by user in /home/user)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

                    "Gradle Enterprise plugin $version has been deprecated. " +
                        "Starting with Gradle 9.0, only Gradle Enterprise plugin 3.13.1 or newer is supported. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/conf/application.conf

    # Default to Global in the root package.
    # application.global=Global
    
    # Router
    # ~~~~~
    # Define the Router object to use for this application.
    # This router will be looked up first when the application is starting up,
    # so make sure this is the entry point.
    # Furthermore, it's assumed your route file is named properly.
    # So for an application router like `my.application.Router`,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/escape/Platform.java

        return requireNonNull(DEST_TL.get());
      }
    
      /**
       * A thread-local destination buffer to keep us from creating new buffers. The starting size is
       * 1024 characters. If we grow past this we don't put it back in the threadlocal, we just keep
       * going and grow as needed.
       */
      private static final ThreadLocal<char[]> DEST_TL =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStartupMessage.java

    import com.google.common.base.Joiner;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class DaemonStartupMessage {
        public static final String STARTING_DAEMON_MESSAGE = "Starting a Gradle Daemon";
        public static final String SUBSEQUENT_BUILDS_WILL_BE_FASTER = "(subsequent builds will be faster)";
        public static final String NOT_REUSED_MESSAGE = " could not be reused, use --status for details";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * This option is not necessary if the doclet starting class is already in the search path.
         * <p>
         * Example of path to jar file that contains the starting doclet class file. Notice the jar filename is included.
         * <p>
         *    -docletpath C:/user/mifdoclet/lib/mifdoclet.jar
         * <p>
         * Example of path to starting doclet class file. Notice the class filename is omitted.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

        def "can group output from custom test listener with task"() {
            buildFile << """
                test {
                    beforeTest { descriptor ->
                        logger.quiet 'Starting test: ' + descriptor.className + ' > ' + descriptor.name
                    }
                    afterTest { descriptor, result ->
                        logger.quiet 'Finishing test: ' + descriptor.className + ' > ' + descriptor.name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top