Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,422 for examine (0.65 sec)

  1. src/cmd/compile/internal/ssa/numberlines.go

    )
    
    func isPoorStatementOp(op Op) bool {
    	switch op {
    	// Note that Nilcheck often vanishes, but when it doesn't, you'd love to start the statement there
    	// so that a debugger-user sees the stop before the panic, and can examine the value.
    	case OpAddr, OpLocalAddr, OpOffPtr, OpStructSelect, OpPhi, OpITab, OpIData,
    		OpIMake, OpStringMake, OpSliceMake, OpStructMake0, OpStructMake1, OpStructMake2, OpStructMake3, OpStructMake4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. src/debug/gosym/pclntab_test.go

    	if pclineTempDir != "" {
    		os.RemoveAll(pclineTempDir)
    		pclineTempDir = ""
    		pclinetestBinary = ""
    	}
    }
    
    // skipIfNotELF skips the test if we are not running on an ELF system.
    // These tests open and examine the test binary, and use elf.Open to do so.
    func skipIfNotELF(t *testing.T) {
    	switch runtime.GOOS {
    	case "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "solaris", "illumos":
    		// OK.
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 17:17:44 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    			}
    		}
    		return true
    	})
    }
    
    // forEachLastStmt calls onLast on each "last" statement in a list of statements.
    // "Last" is defined recursively so, for example, if the last statement is
    // a switch statement, then each switch case is also visited to examine
    // its last statements.
    func forEachLastStmt(stmts []ast.Stmt, onLast func(last ast.Stmt)) {
    	if len(stmts) == 0 {
    		return
    	}
    
    	s := stmts[len(stmts)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf_test.go

    	}
    
    	rdr := d.Reader()
    	ex := &dwtest.Examiner{}
    	if err := ex.Populate(rdr); err != nil {
    		t.Fatalf("error populating DWARF examiner for program %q: %v", source, err)
    	}
    
    	return d, ex
    }
    
    func findSubprogramDIE(t *testing.T, ex *dwtest.Examiner, sym string) *dwarf.Entry {
    	dies := ex.Named(sym)
    	if len(dies) == 0 {
    		t.Fatalf("unable to locate DIE for %s", sym)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AggregateFuture.java

             * where this isn't true, but we ignore it: If we record an exception, then someone calls
             * initCause() on it, and then we examine it again, we'll conclude that we've seen the whole
             * chain before when in fact we haven't. But this should be rare.)
             */
            return false;
          }
        }
        return true;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/offline-mode.apt

      having access to the versioning server. Therefore, it is assumed that
      any SCM-related activity will be unavailable when m2 is in offline
      mode.
    
    ** Maven-Core
    
      We'll examine the different parts of maven-core on a case-by-case
      basis, below:
    
    *** DefaultLifecycleExecutor
    
      When binding goals to the project's configured lifecycle, each mojo
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractService.java

       *
       * @throws IllegalStateException if the service is not {@link State#STARTING}.
       */
      protected final void notifyStarted() {
        monitor.enter();
        try {
          // We have to examine the internal state of the snapshot here to properly handle the stop
          // while starting case.
          if (snapshot.state != STARTING) {
            IllegalStateException failure =
                new IllegalStateException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

             * where this isn't true, but we ignore it: If we record an exception, then someone calls
             * initCause() on it, and then we examine it again, we'll conclude that we've seen the whole
             * chain before when in fact we haven't. But this should be rare.)
             */
            return false;
          }
        }
        return true;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. tensorflow/c/ops.h

    // TF_ShapeInferenceContext pointer. The function's implementation will use the
    // accessor and mutator functions with names beginning with
    // TF_ShapeInferenceContext to examine the input state and determine the output
    // shape.
    
    // Returns the number of inputs in the given shape inference context.
    TF_CAPI_EXPORT extern int64_t TF_ShapeInferenceContextNumInputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractService.java

       *
       * @throws IllegalStateException if the service is not {@link State#STARTING}.
       */
      protected final void notifyStarted() {
        monitor.enter();
        try {
          // We have to examine the internal state of the snapshot here to properly handle the stop
          // while starting case.
          if (snapshot.state != STARTING) {
            IllegalStateException failure =
                new IllegalStateException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top