Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 285 for SELF (0.04 sec)

  1. src/internal/xcoff/xcoff.go

    	R_BA   = 0x08 // A(sym) Branch absolute. Cannot modify instruction
    	R_RBA  = 0x18 // A(sym) Branch absolute. modifiable instruction
    	R_BR   = 0x0A // A(sym-*) Branch rel to self. non modifiable
    	R_RBR  = 0x1A // A(sym-*) Branch rel to self. modifiable instr
    
    	R_TLS    = 0x20 // General-dynamic reference to TLS symbol
    	R_TLS_IE = 0x21 // Initial-exec reference to TLS symbol
    	R_TLS_LD = 0x22 // Local-dynamic reference to TLS symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/syscall/exec_linux_test.go

    	const O_PATH = 0x200000 // Same for all architectures, but for some reason not defined in syscall for 386||amd64.
    
    	// Requires cgroup v2.
    	const prefix = "/sys/fs/cgroup"
    	selfCg, err := os.ReadFile("/proc/self/cgroup")
    	if err != nil {
    		if os.IsNotExist(err) || os.IsPermission(err) {
    			t.Skip(err)
    		}
    		t.Fatal(err)
    	}
    
    	// Expect a single line like this:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/TcpConnectorTest.groovy

            connection?.stop()
            acceptor?.stop()
        }
    
        @Issue("GRADLE-2316")
        @Requires(UnitTestPreconditions.NotMacOs) // https://github.com/gradle/gradle-private/issues/2832
        def "detects self connect when outgoing connection binds to same port"() {
            given:
            def socketChannel = SocketChannel.open()
            def communicationAddress = addressFactory.getLocalBindingAddress()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

    // Returns true iff the IDs could potentially point to the same resource.
    //
    // Note: This doesn't yet take self-dependent-only resources into account. We
    // would need to return false if one resource is unknown and the other one is
    // self-dependent-only. This could cause unreported extra dependencies for such
    // cases.
    bool IsPotentiallySameResource(TF::ResourceId resource_id,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/MoreObjects.java

       *
       * <p>Note that in GWT, class names are often obfuscated.
       *
       * @param self the object to generate the string for (typically {@code this}), used only for its
       *     class name
       * @since 18.0 (since 2.0 as {@code Objects.toStringHelper()}).
       */
      public static ToStringHelper toStringHelper(Object self) {
        return new ToStringHelper(self.getClass().getSimpleName());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/MoreObjects.java

       *
       * <p>Note that in GWT, class names are often obfuscated.
       *
       * @param self the object to generate the string for (typically {@code this}), used only for its
       *     class name
       * @since 18.0 (since 2.0 as {@code Objects.toStringHelper()}).
       */
      public static ToStringHelper toStringHelper(Object self) {
        return new ToStringHelper(self.getClass().getSimpleName());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Network.java

       * network that does not allow them will throw an {@link IllegalArgumentException}.
       */
      boolean allowsParallelEdges();
    
      /**
       * Returns true if this network allows self-loops (edges that connect a node to itself).
       * Attempting to add a self-loop to a network that does not allow them will throw an {@link
       * IllegalArgumentException}.
       */
      boolean allowsSelfLoops();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. fastapi/openapi/docs.py

        Read more about it in the
        [FastAPI docs for Configure Swagger UI](https://fastapi.tiangolo.com/how-to/configure-swagger-ui/)
        and the [FastAPI docs for Custom Docs UI Static Assets (Self-Hosting)](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/).
        """
        current_swagger_ui_parameters = swagger_ui_default_parameters.copy()
        if swagger_ui_parameters:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/Network.java

       * network that does not allow them will throw an {@link IllegalArgumentException}.
       */
      boolean allowsParallelEdges();
    
      /**
       * Returns true if this network allows self-loops (edges that connect a node to itself).
       * Attempting to add a self-loop to a network that does not allow them will throw an {@link
       * IllegalArgumentException}.
       */
      boolean allowsSelfLoops();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/certlist.go

    	}
    }
    
    // KubeadmCertRootCA is the definition of the Kubernetes Root CA for the API Server and kubelet.
    func KubeadmCertRootCA() *KubeadmCert {
    	return &KubeadmCert{
    		Name:     "ca",
    		LongName: "self-signed Kubernetes CA to provision identities for other Kubernetes components",
    		BaseName: kubeadmconstants.CACertAndKeyBaseName,
    		config: pkiutil.CertConfig{
    			Config: certutil.Config{
    				CommonName: "kubernetes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top