Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 121 for jstack (0.09 sec)

  1. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * "/static/images/" before serving the corresponding assets from the filesystem.
     *
     * ```java
     * String attack = "http://example.com/static/images/../../../../../etc/passwd";
     * System.out.println(new URL(attack).getPath());
     * System.out.println(new URI(attack).getPath());
     * System.out.println(HttpUrl.parse(attack).encodedPath());
     * ```
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    	sysctlArpIgnore               = "net/ipv4/conf/all/arp_ignore"
    	sysctlArpAnnounce             = "net/ipv4/conf/all/arp_announce"
    )
    
    // NewDualStackProxier returns a new Proxier for dual-stack operation
    func NewDualStackProxier(
    	ctx context.Context,
    	ipt [2]utiliptables.Interface,
    	ipvs utilipvs.Interface,
    	ipset utilipset.Interface,
    	sysctl utilsysctl.Interface,
    	exec utilexec.Interface,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    //
    // There are 3 cases today (as paraphrased from the ELFv2 document):
    //
    //  1. R2 holds the TOC pointer on entry. The call stub must save R2 into the ELFv2 TOC stack save slot.
    //
    //  2. R2 holds the TOC pointer on entry. The caller has already saved R2 to the TOC stack save slot.
    //
    //  3. R2 does not hold the TOC pointer on entry. The caller has no expectations of R2.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    			}
    			jsb, err := json.Marshal(jsgot)
    			if err != nil {
    				t.Fatal(err)
    			}
    			jswant := `"` + wants + `"`
    			jsback := string(jsb)
    			if jsback != jswant {
    				t.Errorf("Marshal(Unmarshal(%q)) = %s, want %s", test.in, jsback, jswant)
    			}
    		})
    	}
    
    	var invalidIPs = []string{
    		// Empty string
    		"",
    		// Garbage non-IP
    		"bad",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	go122.EvGoSwitch:        (*ordering).advanceGoSwitch,
    	go122.EvGoSwitchDestroy: (*ordering).advanceGoSwitch,
    	go122.EvGoCreateBlocked: (*ordering).advanceGoCreate,
    
    	// GoStatus event with a stack. Added in Go 1.23.
    	go122.EvGoStatusStack: (*ordering).advanceGoStatus,
    
    	// Experimental events.
    
    	// Experimental heap span events. Added in Go 1.23.
    	go122.EvSpan:      (*ordering).advanceAllocFree,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    -default-device : The default device to assign.
    ```
    ### `-tf-stack-ops-decomposition`
    
    _Decompose stack operations into local variable operations. Needs static shapes._
    
    A pass that converts stack operations to tensor operations and read/assign
    ops on local variables. A later resource lifting pass can further remove the
    local variables.
    
    This pass requires that the full shape of the stack can be inferred: 1) the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Futures.java

       * exception, every unchecked exception as an unchecked exception, and every error as an error. In
       * addition, the cause of any {@code ExecutionException} is wrapped in order to ensure that the
       * new stack trace matches that of the current thread.
       *
       * <p>Instances of {@code exceptionClass} are created by choosing an arbitrary public constructor
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            // types that can't be live-in or live-out of a cluster.  These ops are:
            //
            //  - TensorArray ops operating on the same TensorArray instance.
            //  - Stack ops operating on the same Stack instance.
            //
            // To work around this we avoid isolating these specific ops.  Because
            // of this concession it is unsound to auto-cluster them because then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function_test.cc

      }
    
      // Verify that stack traces of func is copied to graph function library.
      ASSERT_NE(func_stack_traces, nullptr);
      EXPECT_EQ(func_stack_traces->size(), 4);
      EXPECT_EQ(func_stack_traces->at("neg")->ToString({}), kNegStackToString);
      EXPECT_EQ(func_stack_traces->at("feed")->ToString({}), kFeedStackToString);
    
      // Verify that stack traces of grad_func is copied to graph function library.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                return execute(cliRequest);
            } catch (ExitException e) {
                return e.exitCode;
            } catch (UnrecognizedOptionException e) {
                // pure user error, suppress stack trace
                return 1;
            } catch (BuildAbort e) {
                CLIReportingUtils.showError(slf4jLogger, "ABORTED", e, cliRequest.showErrors);
    
                return 2;
            } catch (Exception e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top