Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 611 for Invoke (0.1 sec)

  1. guava/src/com/google/common/collect/ForwardingMap.java

     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingMap}.
     *
     * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equal} to test
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                configurations.create("for-string-invoke")
    
                (artifacts) {
                    adhocConfig(file("first.txt"))
                    adhocConfig(file("second.txt")) {
                        setType("other-type")
                    }
                    "for-string-invoke"(file("first.txt"))
                    "for-string-invoke"(file("second.txt")) {
                        setType("other-type")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    			minPeriod: time.Millisecond,
    		}).OnError()
    	},
    }
    
    type ErrorHandler func(ctx context.Context, err error, msg string, keysAndValues ...interface{})
    
    // HandlerError is a method to invoke when a non-user facing piece of code cannot
    // return an error and needs to indicate it has been ignored. Invoking this method
    // is preferable to logging the error - the default behavior is to log but the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ForwardingMultiset.java

     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingMultiset}.
     *
     * <p>The {@code standard} methods and any collection views they return are not guaranteed to be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

            tasks.create<Copy>("quartern")
            tasks.create<Copy>("koto").description += "!"
        }
    
        @Test
        fun `polymorphic named domain object container scope string invoke`() {
    
            testTaskContainerVia(
                "scope-string invoke",
                script = """
    
                tasks {
    
                    val foo: TaskProvider<Task>  = "foo"()
                    val bar: TaskProvider<Task> = "bar" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestFailureIntegrationTest.groovy

                .testFailed("testUsefulNPE", equalTo('java.lang.NullPointerException: Cannot invoke "Object.toString()" because "o" is null'))
            result.testClass("UsefulNPETest")
                .testFailed("testDeepUsefulNPE", equalTo('java.lang.RuntimeException: java.lang.NullPointerException: Cannot invoke "Object.toString()" because "param" is null'))
            result.testClass("UsefulNPETest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. hack/make-rules/test-e2e-node.sh

      fi
      if [[ -n ${instance_type} ]]; then
        echo "Instance Type: ${instance_type}"
      fi
      echo "Kubelet Config File: ${kubelet_config_file}"
    
      # Invoke the runner
      go run test/e2e_node/runner/remote/run_remote.go  --vmodule=*=4 --ssh-env="gce" \
        --zone="${zone}" --project="${project}" --gubernator="${gubernator}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

                    abstract val testingCollector: DependencyCollector
    
                    operator fun invoke(closure: MyDependencies.() -> Unit) {
                        closure(this)
                    }
                }
    
                val dependencies = objects.newInstance(MyDependencies::class.java)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/net/rpc/server.go

    	l, err := net.Listen("tcp", ":1234")
    	if err != nil {
    		log.Fatal("listen error:", err)
    	}
    	go http.Serve(l, nil)
    
    At this point, clients can see a service "Arith" with methods "Arith.Multiply" and
    "Arith.Divide".  To invoke one, a client first dials the server:
    
    	client, err := rpc.DialHTTP("tcp", serverAddress + ":1234")
    	if err != nil {
    		log.Fatal("dialing:", err)
    	}
    
    Then it can make a remote call:
    
    	// Synchronous call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

    /**
     * A reference queue with an associated background thread that dequeues references and invokes
     * {@link FinalizableReference#finalizeReferent()} on them.
     *
     * <p>Keep a strong reference to this object until all of the associated referents have been
     * finalized. If this object is garbage collected earlier, the backing thread will not invoke {@code
     * finalizeReferent()} on the remaining references.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top