Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,498 for runActions (0.23 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/doc.go

    // The unmarshal package defines an Analyzer that checks for passing
    // non-pointer or non-interface types to unmarshal and decode functions.
    //
    // # Analyzer unmarshal
    //
    // unmarshal: report passing non-pointer or non-interface values to unmarshal
    //
    // The unmarshal analysis reports calls to functions such as json.Unmarshal
    // in which the argument type is not a pointer or an interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 571 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/shake.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sha3
    
    // This file defines the ShakeHash interface, and provides
    // functions for creating SHAKE and cSHAKE instances, as well as utility
    // functions for hashing bytes to arbitrary-length output.
    //
    //
    // SHAKE implementation is based on FIPS PUB 202 [1]
    // cSHAKE implementations is based on NIST SP 800-185 [2]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/AbstractClientProvidedBuildActionRunner.java

            @Override
            public void beforeTasks(BuildTreeModelController controller) {
                runAction(controller, clientAction.getProjectsEvaluatedAction(), PhasedActionResult.Phase.PROJECTS_LOADED);
            }
    
            @Override
            public SerializedPayload fromBuildModel(BuildTreeModelController controller) {
                runAction(controller, clientAction.getBuildFinishedAction(), PhasedActionResult.Phase.BUILD_FINISHED);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:55:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pkg/apis/core/toleration.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    //TODO: consider making these methods functions, because we don't want helper
    //functions in the k8s.io/api repo.
    
    package core
    
    // MatchToleration checks if the toleration matches tolerationToMatch. Tolerations are unique by <key,effect,operator,value>,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:07 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

            create_resource_fn->saved_concrete_func;
        if (!saved_create_resource_fn->bound_inputs().empty()) {
          // TODO(b/124045874): Support loading resource functions via a top sort
          return absl::UnimplementedError(
              "Create Resource functions with captures are currently unsupported.");
        }
      }
      return Status();
    }
    
    // Retrieves the TensorHandle associated with `node_id` from `obj_graph`, and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    	missing := knownFunctions.Difference(functionNames)
    
    	if len(unexpected) != 0 {
    		t.Errorf("Expected all functions in the libraries to be assigned to a kubernetes release, but found the unexpected function names: %v", unexpected)
    	}
    	if len(missing) != 0 {
    		t.Errorf("Expected all functions in the libraries to be assigned to a kubernetes release, but found the missing function names: %v", missing)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/internal/bytealg/equal_native.go

    package bytealg
    
    import "unsafe"
    
    // The declarations below generate ABI wrappers for functions
    // implemented in assembly in this package but declared in another
    // package.
    
    // The compiler generates calls to runtime.memequal and runtime.memequal_varlen.
    // In addition, the runtime calls runtime.memequal explicitly.
    // Those functions are implemented in this package.
    
    //go:linkname abigen_runtime_memequal runtime.memequal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 00:56:36 UTC 2019
    - 789 bytes
    - Viewed (0)
  8. src/runtime/pprof/proto.go

    // its own location.
    
    // pcDeck is a helper to detect a sequence of inlined functions from
    // a stack trace returned by the runtime.
    //
    // The stack traces returned by runtime's trackback functions are fully
    // expanded (at least for Go functions) and include the fake pcs representing
    // inlined functions. The profile proto expects the inlined functions to be
    // encoded in one Location message.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/HashFunctionEnum.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.hash;
    
    
    /**
     * An enum that contains all of the known hash functions.
     *
     * @author Kurt Alfred Kluever
     */
    enum HashFunctionEnum {
      ADLER32(Hashing.adler32()),
      CRC32(Hashing.crc32()),
      GOOD_FAST_HASH_32(Hashing.goodFastHash(32)),
      GOOD_FAST_HASH_64(Hashing.goodFastHash(64)),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 08 13:56:22 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. pkg/apis/rbac/v1beta1/register.go

    }
    
    var (
    	localSchemeBuilder = &rbacv1beta1.SchemeBuilder
    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addDefaultingFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 18:30:51 UTC 2017
    - 1.5K bytes
    - Viewed (0)
Back to top