Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for foo$i (0.05 sec)

  1. android/guava/src/com/google/common/collect/Tables.java

       * ...
       * synchronized (table) {  // Synchronizing on table, not row!
       *   Iterator<Entry<C, V>> i = row.entrySet().iterator(); // Must be in synchronized block
       *   while (i.hasNext()) {
       *     foo(i.next());
       *   }
       * }
       * }</pre>
       *
       * <p>Failure to follow this advice may result in non-deterministic behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Tables.java

       * ...
       * synchronized (table) {  // Synchronizing on table, not row!
       *   Iterator<Entry<C, V>> i = row.entrySet().iterator(); // Must be in synchronized block
       *   while (i.hasNext()) {
       *     foo(i.next());
       *   }
       * }
       * }</pre>
       *
       * <p>Failure to follow this advice may result in non-deterministic behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	IncompatibleAssign
    
    	// UnaddressableFieldAssign occurs when trying to assign to a struct field
    	// in a map value.
    	//
    	// Example:
    	//  func f() {
    	//  	m := make(map[string]struct{i int})
    	//  	m["foo"].i = 42
    	//  }
    	UnaddressableFieldAssign
    
    	/* decls > type (+ other type expression codes) */
    
    	// NotAType occurs when the identifier used as the underlying type in a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/internal/types/errors/codes.go

    	IncompatibleAssign
    
    	// UnaddressableFieldAssign occurs when trying to assign to a struct field
    	// in a map value.
    	//
    	// Example:
    	//  func f() {
    	//  	m := make(map[string]struct{i int})
    	//  	m["foo"].i = 42
    	//  }
    	UnaddressableFieldAssign
    
    	// NotAType occurs when the identifier used as the underlying type in a type
    	// declaration or the right-hand side of a type alias does not denote a type.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  5. pkg/kubelet/util/sliceutils/sliceutils_test.go

    		i    int
    		j    int
    	}{
    		{buildPodsByCreationTime(), 0, 1},
    		{buildPodsByCreationTime(), 2, 1},
    	}
    
    	for _, fooTest := range fooTests {
    		fooi := fooTest.pods[fooTest.i]
    		fooj := fooTest.pods[fooTest.j]
    		fooTest.pods.Swap(fooTest.i, fooTest.j)
    		if fooi.GetName() != fooTest.pods[fooTest.j].GetName() || fooj.GetName() != fooTest.pods[fooTest.i].GetName() {
    			t.Errorf("failed to swap for %v", fooTest)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/functions.kt

            enum class F {
                private fun f() {}
            }
        }
    }
    
    enum class G {
        H, I;
    
        private fun g() {}
    }
    
    
    fun foo() {
        private fun fooA() {}
    
        class FooI {
            private fun m() {}
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 26 19:19:00 UTC 2022
    - 475 bytes
    - Viewed (0)
  7. test/fixedbugs/issue12006.go

    	}
    }
    
    func TFooNz() {
    	for i := 0; i < 1000; i++ {
    		var i, j int  // ERROR "moved to heap: i" "moved to heap: j"
    		FooNz(&i, &j) // ERROR "... argument escapes to heap"
    	}
    }
    
    var isink *int32
    
    func FooI(args ...interface{}) { // ERROR "leaking param content: args"
    	for i := 0; i < len(args); i++ {
    		switch x := args[i].(type) {
    		case nil:
    			println("is nil")
    		case int32:
    			println("is int32")
    		case *int32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Multimaps.java

       * ...
       * synchronized (multimap) {  // Synchronizing on multimap, not values!
       *   Iterator<V> i = values.iterator(); // Must be in synchronized block
       *   while (i.hasNext()) {
       *     foo(i.next());
       *   }
       * }
       * }</pre>
       *
       * <p>Failure to follow this advice may result in non-deterministic behavior.
       *
       * <p>Note that the generated multimap's {@link Multimap#removeAll} and {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multimaps.java

       * ...
       * synchronized (multimap) {  // Synchronizing on multimap, not values!
       *   Iterator<V> i = values.iterator(); // Must be in synchronized block
       *   while (i.hasNext()) {
       *     foo(i.next());
       *   }
       * }
       * }</pre>
       *
       * <p>Failure to follow this advice may result in non-deterministic behavior.
       *
       * <p>Note that the generated multimap's {@link Multimap#removeAll} and {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top