Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for BAR (0.02 sec)

  1. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          assertNull(errorMessage, incorrectError);
        }
      }
    
      public void verifyBarFail(Method method, TwoArg bar) {
        try {
          new NullPointerTester().testMethod(bar, method);
        } catch (AssertionError expected) {
          return; // good...we wanted a failure
        }
        String errorMessage =
            rootLocaleFormat("Should have flagged method %s for %s", method.getName(), bar);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			pod: podWithTolerations("pod1", []v1.Toleration{{
    				Key:      "foo",
    				Operator: v1.TolerationOpEqual,
    				Value:    "bar",
    				Effect:   v1.TaintEffectPreferNoSchedule,
    			}}),
    			nodes: []*v1.Node{
    				nodeWithTaints("nodeA", []v1.Taint{{
    					Key:    "foo",
    					Value:  "bar",
    					Effect: v1.TaintEffectPreferNoSchedule,
    				}}),
    				nodeWithTaints("nodeB", []v1.Taint{{
    					Key:    "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

         * the names of the lambda parameters in the situations like this:
         *
         * ```
         * // compiled library
         * fun foo(): (bar: String) -> Unit { ... }
         *
         * // source code
         * fun test() {
         *   val action = foo()
         *   action("") // this call
         * }
         * ```
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

     * is imported somewhere else and used without directly referencing the object instance
     * itself:
     *
     * ```kt
     * import Foo.bar
     *
     * object Foo { fun String.bar() {} }
     *
     * fun usage() {
     *   "hello".bar() // this call has implicit 'Foo' dispatch receiver
     * }
     * ```
     */
    internal val FirResolvedQualifier.isImplicitDispatchReceiver: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/testdata/append-single-restore.golden

    * table
    -N chain
    -A chain -f foo -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 46 bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/testdata/insert-single-restore.golden

    * table
    -N chain
    -I chain 2 -f foo -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 48 bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/builder/testdata/append-single.golden

    -t table -N chain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 49 bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/builder/testdata/insert-single.golden

    -t table -N chain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 51 bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            val referencedSymbolsByFir = listOfNotNull(symbolBuilder.buildSymbol(referencedSymbol))
            val fullQualifiedAccess = when (val psi = fir.source.psi) {
                // for cases like `Foo.Bar()`, where `Foo.Bar` is an object, and `Foo.Bar()` is a call to `invoke` operator
                is KtSimpleNameExpression -> psi.getQualifiedElement()
                else -> psi
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileTreeIntegrationTest.groovy

            outputDoesNotContain '*foo.fail*'
    
            when: 'a new input appears!'
            file('src/bar.ok').write('')
            if (isZip) {
                srcDir.zipTo(file('src.zip'))
            }
    
            and:
            configurationCacheRun 'ok'
    
            then:
            outputContains '*bar.ok*'
            outputDoesNotContain '*foo.fail*'
    
            and:
            configurationCache.assertStateLoaded()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top