Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 459 for inner2 (0.19 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaClassChangeIncrementalCompilationIntegrationTest.groovy

            void changeInnerName() {
                source """
                    class WithInner2 {
                        SomeInterface getInner() {
                            return new Inner2();
                        }
    
                        static class Inner2 implements SomeInterface {
                            public int foo() {
                                return 42;
                            }
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            then:
            0 * _
        }
    
        def "watch only outermost hierarchy"() {
            def outerDir = file("outer").createDir()
            def innerDirBefore = file("outer/inner1").createDir()
            def innerDirAfter = file("outer/inner2").createDir()
    
            registerWatchableHierarchies([innerDirBefore, outerDir, innerDirAfter])
    
            when:
            addSnapshotInWatchableHierarchy(outerDir)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

            outputs.deletedClasses 'A$InnerA'
        }
    
        def "detects rename of an inner class"() {
            source """class A {
                class InnerA {}
            }"""
            source "class B {}"
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
            source """class A {
                class InnerA2 {}
            }"""
            run language.compileTaskName
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. src/runtime/pinner.go

    func (p *Pinner) Pin(pointer any) {
    	if p.pinner == nil {
    		// Check the pinner cache first.
    		mp := acquirem()
    		if pp := mp.p.ptr(); pp != nil {
    			p.pinner = pp.pinnerCache
    			pp.pinnerCache = nil
    		}
    		releasem(mp)
    
    		if p.pinner == nil {
    			// Didn't get anything from the pinner cache.
    			p.pinner = new(pinner)
    			p.refs = p.refStore[:0]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/testing/testing_test.go

    		// parallel, their test functions return (and are no longer “running”)
    		// before the inner subtests are released to run and hang.
    		// Only those inner subtests should be reported as running.
    		want := []string{
    			"TestRunningTests/outer0/inner0",
    			"TestRunningTests/outer0/inner1",
    			"TestRunningTests/outer1/inner0",
    			"TestRunningTests/outer1/inner1",
    		}
    
    		got, ok := parseRunningTests(out)
    		if slices.Equal(got, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/go/types/infer.go

    // partially instantiated generic functions may be assigned
    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/infer.go

    // partially instantiated generic functions may be assigned
    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. tensorflow/c/while_loop_test.cc

      //      input2 += 1
      //      inner_input1 += 2
      //    }
      //    input1 += input2
      //  }
      //
      // Expected execution with initial values input1 = input2 = 0:
      //
      // outer inner               inner_
      // step# step# input1 input2 input1
      // ------------------------------------
      //   0     0     0      0      0
      //   0     1     0      1      2
      //   0     2     0      2      4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    // formed are pruned. If the child island inner ops consume the parent island
    // control result, the child island inner ops will have that respective control
    // input pruned. Results of the parent island that are consumed by the child
    // island are replaced by the respective inner ops result from the parent
    // island.
    void GetNewIslandResultsAndForwardResults(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/branches.go

    			}
    
    		case *BlockStmt:
    			inner := targets{ctxt.breaks, ctxt.continues, -1}
    			innerBlock(inner, s.Pos(), s.List)
    
    		case *IfStmt:
    			inner := targets{ctxt.breaks, ctxt.continues, -1}
    			innerBlock(inner, s.Then.Pos(), s.Then.List)
    			if s.Else != nil {
    				innerBlock(inner, s.Else.Pos(), []Stmt{s.Else})
    			}
    
    		case *ForStmt:
    			inner := targets{s, s, -1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
Back to top