Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,363 for inter (0.06 sec)

  1. src/fmt/errors_test.go

    	noVetErrorf := fmt.Errorf
    
    	wrapped := errors.New("inner error")
    	for _, test := range []struct {
    		err        error
    		wantText   string
    		wantUnwrap error
    		wantSplit  []error
    	}{{
    		err:        fmt.Errorf("%w", wrapped),
    		wantText:   "inner error",
    		wantUnwrap: wrapped,
    	}, {
    		err:        fmt.Errorf("added context: %w", wrapped),
    		wantText:   "added context: inner error",
    		wantUnwrap: wrapped,
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 18:40:40 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue60377.go

    // T1 is a defined parameterized interface type which
    // can be assigned to any other interface with the same
    // methods. We cannot infer a type argument in this case
    // because any type would do.
    
    type T1[P any] interface{ m() }
    
    func g[P any](T1[P]) {}
    
    func _() {
    	var x T1[int]
    	g /* ERROR "cannot infer P" */ (x)
    	g[int](x)    // int is ok for P
    	g[string](x) // string is also ok for P!
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/basic/groovy/build.gradle

    }
    
    tasks.named('test', Test) {
        useJUnitPlatform()
    
        maxHeapSize = '1G'
    
        testLogging {
            events "passed"
        }
    }
    // end::java-basic-test-config[]
    
    // tag::practical-integ-test-source-set[]
    sourceSets {
        intTest {
            compileClasspath += sourceSets.main.output
            runtimeClasspath += sourceSets.main.output
        }
    }
    
    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
    
      Output a = ops::Const(root.WithOpName("a"), Input::Initializer(0.0));
      Output enter =
          ops::internal::Enter(root.WithOpName("enter"), a, "only_frame");
      Output exit = ops::internal::Exit(root.WithOpName("exit"), enter);
      Output b = ops::Add(root.WithOpName("b"), a, exit);
    
      FixupSourceAndSinkEdges(root.graph());
    
      GraphCycles cycles;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/deeplyNestedCode.kt

    class X {
        fun foo() {
            class U {
                inner class K {
                    inner class D {
                        fun check() {
                            class F {
                                inner class L
                            }
                        }
                    }
                }
    
                class T
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 26 19:19:00 UTC 2022
    - 332 bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.17.md

    - User can now use component config to configure NodeLabel plugin for the scheduler framework. ([#84297](https://github.com/kubernetes/kubernetes/pull/84297), [@liu-cong](https://github.com/liu-cong))
    - Optimize inter-pod affinity preferredDuringSchedulingIgnoredDuringExecution type, up to 4x in some cases. ([#84264](https://github.com/kubernetes/kubernetes/pull/84264), [@ahg-g](https://github.com/ahg-g))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  7. test/typeparam/index.go

    	}
    
    	vec5 := []obj3{obj3{2, 3}, obj3{3, 4}, obj3{4, 5}}
    	if got := Index(vec5, vec5[2]); got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    
    	vec6 := []obj4{obj4{2, inner{3, 4}}, obj4{3, inner{4, 5}}, obj4{4, inner{5, 6}}}
    	if got := Index(vec6, vec6[2]); got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/legalize_tfg_with_control_flow.mlir

        %Enter, %ctl_0 = Enter(%Const) name("while/Enter") {T = i32, frame_name = "while/while_context", is_constant = false, parallel_iterations = 10 : i64} : (tensor<i32>) -> (tensor<*xi32>)
        %NextIteration, %ctl_1 = NextIteration(%Add) name("while/NextIteration") {T = i32} : (tensor<*xi32>) -> (tensor<*xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 06 18:31:38 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                        "-x", ":docs:platformTest",
                        "-x", ":docs:configCacheTest",
                        "-x", ":distributions-integ-tests:quickTest",
                        "-x", ":distributions-integ-tests:platformTest",
                        "-x", ":distributions-integ-tests:configCacheTest"
                    ) +
                    listOf(extraParameters) +
                    functionalTestParameters(os, arch) +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/kube/krt/recomputetrigger.go

    type RecomputeTrigger struct {
    	inner StaticSingleton[int32]
    	// krt will suppress events for unchanged resources. To workaround this, we constantly change and int each time TriggerRecomputation
    	// is called to ensure our event is not suppressed.
    	i *atomic.Int32
    }
    
    func NewRecomputeTrigger() *RecomputeTrigger {
    	inner := NewStatic[int32](ptr.Of(int32(0)))
    	return &RecomputeTrigger{inner: inner, i: atomic.NewInt32(0)}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:51:56 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top