Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for analyzing (0.23 sec)

  1. src/go/scanner/scanner.go

    			goto exit
    		}
    	}
    
    	s.error(offs, "comment not terminated")
    
    exit:
    	lit := s.src[offs:s.offset]
    
    	// On Windows, a (//-comment) line may end in "\r\n".
    	// Remove the final '\r' before analyzing the text for
    	// line directives (matching the compiler). Remove any
    	// other '\r' afterwards (matching the pre-existing be-
    	// havior of the scanner).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      effects.emplace_back(MemoryEffects::Write::get(),
                           ResourceEffects::TPUExecute::get());
    
      // Conservatively mark resource handles as read and write, as without
      // analyzing TPUCompile, there is not sufficient information to determine
      // effects on resources. For the MLIR bridge, this op will never be
      // populated with resource handles and tf.TPUExecuteAndUpdateVariables is
      // used instead.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    				if ellip, _ := atyp.Len.(*ast.Ellipsis); ellip != nil && ellip.Elt == nil {
    					// We have an "open" [...]T array type.
    					// Create a new ArrayType with unknown length (-1)
    					// and finish setting it up after analyzing the literal.
    					typ = &Array{len: -1, elem: check.varType(atyp.Elt)}
    					base = typ
    					break
    				}
    			}
    			typ = check.typ(e.Type)
    			base = typ
    
    		case hint != nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    			if atyp, _ := e.Type.(*syntax.ArrayType); atyp != nil && atyp.Len == nil {
    				// We have an "open" [...]T array type.
    				// Create a new ArrayType with unknown length (-1)
    				// and finish setting it up after analyzing the literal.
    				typ = &Array{len: -1, elem: check.varType(atyp.Elem)}
    				base = typ
    				break
    			}
    			typ = check.typ(e.Type)
    			base = typ
    
    		case hint != nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    This means that changes which only touch the implementation of classes do not make the task out of date.
    
    [[sec:task_input_nested_inputs]]
    === Nested inputs
    
    When analyzing `@link:{javadocPath}/org/gradle/api/tasks/Nested.html[Nested]` task properties for declared input and output sub-properties Gradle uses the type of the actual value.
    Hence it can discover all sub-properties declared by a runtime sub-type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    (The -x flag is removed because it applies only to the go command's
    execution, not to the test itself.)
    
    The test flags that generate profiles (other than for coverage) also
    leave the test binary in pkg.test for use when analyzing the profiles.
    
    When 'go test' runs a test binary, it does so from within the
    corresponding package's source code directory. Depending on the test,
    it may be necessary to do the same when invoking a generated test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

            List<StackTraceElement> stack = failure.getStackTrace();
            int startPos;
            int endPos;
            if (fromException) {
                // When analysing an exception stack trace, consider all the user code in the stack.
                // This is because we cannot tell the difference between:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

     * artifact publishing by reducing the artifacts and packaging reports that consist of multiple files.
     *
     * Reducing the number of reports also makes it easier to find the important ones when analysing a failed build in
     * Team City.
     */
    
    val testFilesCleanup = extensions.create<TestFileCleanUpExtension>("testFilesCleanup").apply {
        reportOnly.convention(false)
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 06:57:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/jvm/ModularitySpec.java

     *
     * @since 6.4
     */
    public interface ModularitySpec {
    
        /**
         * Should a --module-path be inferred by analysing JARs and class folders on the classpath?
         * <p>
         * An entry is considered to be part of the module path if it meets one of the following conditions:
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 11:38:01 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/GroovyRecompilationSpecProvider.java

        }
    
        /**
         * For all classes with Java source that we will be recompiled due to some change, we need to recompile all subclasses.
         * This is because Groovy might try to load some subclass when analysing Groovy classes before Java compilation, but if parent class was stale,
         * it has been deleted, so class loading of a subclass will fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top