Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 595 for Terminate (0.25 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types.go

    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    type Ingress struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/dryrun_test.go

    	if err != nil {
    		t.Fatalf("Error creating storage: %v", err)
    	}
    	return DryRunnableStorage{Storage: s, Codec: sc.Codec}, func() {
    		destroy()
    		server.Terminate(t)
    	}
    }
    
    func UnstructuredOrDie(j string) *unstructured.Unstructured {
    	m := map[string]interface{}{}
    	err := json.Unmarshal([]byte(j), &m)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Ascii.java

       * Such a sequence is referred to as "text." STX may be used to terminate a sequence of characters
       * started by SOH.
       *
       * @since 8.0
       */
      public static final byte STX = 2;
    
      /**
       * End of Text: A communication control character used to terminate a sequence of characters
       * started with STX and transmitted as an entity.
       *
       * @since 8.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   test in it; the sub-process exits with code 0 at the end of the
    //   death test, if it hasn't exited already.
    //
    //   3. The parent process waits for the sub-process to terminate.
    //
    //   4. The parent process checks the exit code and error message of
    //   the sub-process.
    //
    // Examples:
    //
    //   ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. licenses/github.com/openshift/api/LICENSE

          or a Contribution incorporated within the Work constitutes direct
          or contributory patent infringement, then any patent licenses
          granted to You under this License for that Work shall terminate
          as of the date such litigation is filed.
    
       4. Redistribution. You may reproduce and distribute copies of the
          Work or Derivative Works thereof in any medium, with or without
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 16 06:16:35 UTC 2020
    - 10.5K bytes
    - Viewed (0)
  6. licenses/github.com/vishvananda/netlink/LICENSE

          or a Contribution incorporated within the Work constitutes direct
          or contributory patent infringement, then any patent licenses
          granted to You under this License for that Work shall terminate
          as of the date such litigation is filed.
    
       4. Redistribution. You may reproduce and distribute copies of the
          Work or Derivative Works thereof in any medium, with or without
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 28 00:29:20 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  7. licenses/github.com/vishvananda/netns/LICENSE

          or a Contribution incorporated within the Work constitutes direct
          or contributory patent infringement, then any patent licenses
          granted to You under this License for that Work shall terminate
          as of the date such litigation is filed.
    
       4. Redistribution. You may reproduce and distribute copies of the
          Work or Derivative Works thereof in any medium, with or without
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 28 00:29:20 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Ascii.java

       * Such a sequence is referred to as "text." STX may be used to terminate a sequence of characters
       * started by SOH.
       *
       * @since 8.0
       */
      public static final byte STX = 2;
    
      /**
       * End of Text: A communication control character used to terminate a sequence of characters
       * started with STX and transmitted as an entity.
       *
       * @since 8.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                    logger.error("IndexUpdater is terminated.", e);
                } else if (logger.isInfoEnabled()) {
                    logger.info("IndexUpdater is terminated.");
                }
                forceStop();
            } catch (final Throwable t) {
                if (ComponentUtil.available()) {
                    logger.error("IndexUpdater is terminated.", t);
                } else if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. misc/ios/go_ios_exec.go

    			if not err.Success():
    				sys.stderr.write("lldb: failed to launch remote process: %s\n" % (err))
    				process.Kill()
    				debugger.Terminate()
    				sys.exit(1)
    		run_program()
    
    exitStatus = process.GetExitStatus()
    exitDesc = process.GetExitDescription()
    process.Kill()
    debugger.Terminate()
    if exitStatus == 0 and exitDesc is not None:
    	# Ensure tests fail when killed by a signal.
    	exitStatus = 123
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
Back to top