Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,607 for Invokes (0.13 sec)

  1. pkg/kubelet/kubelet_server_journal.go

    	defer cancel()
    	boot := 0
    	if n.Boot != nil {
    		boot = *n.Boot
    	}
    	n.copyForBoot(ctx, w, boot)
    }
    
    // copyForBoot invokes the OS specific logging command with the  provided args
    func (n *nodeLogQuery) copyForBoot(ctx context.Context, w io.Writer, previousBoot int) {
    	if ctx.Err() != nil {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa_s390x.go

    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    package ecdsa
    
    import (
    	"crypto/elliptic"
    	"errors"
    	"internal/cpu"
    	"io"
    	"math/big"
    )
    
    // kdsa invokes the "compute digital signature authentication"
    // instruction with the given function code and 4096 byte
    // parameter block.
    //
    // The return value corresponds to the condition code set by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/cover.go

    	"cmd/go/internal/cfg"
    	"cmd/go/internal/str"
    	"cmd/internal/cov/covcmd"
    	"context"
    	"encoding/json"
    	"fmt"
    	"internal/coverage"
    	"io"
    	"os"
    	"path/filepath"
    )
    
    // CovData invokes "go tool covdata" with the specified arguments
    // as part of the execution of action 'a'.
    func (b *Builder) CovData(a *Action, cmdargs ...any) ([]byte, error) {
    	cmdline := str.StringList(cmdargs...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    include::{samples-dir}/groovy/${subprojectName.raw}/src/test/${languageLC.raw}/${testSourceFile.raw}[]
    ----
    
    The generated test class has a single ${testFramework.raw} test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/walk.go

    // This file implements syntax tree walking.
    
    package syntax
    
    import "fmt"
    
    // Inspect traverses an AST in pre-order: it starts by calling f(root);
    // root must not be nil. If f returns true, Inspect invokes f recursively
    // for each of the non-nil children of root, followed by a call of f(nil).
    //
    // See Walk for caveats about shared nodes.
    func Inspect(root Node, f func(Node) bool) {
    	Walk(root, inspector(f))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       */
      public static ListeningScheduledExecutorService noOpScheduledExecutor() {
        return new NoOpScheduledExecutorService();
      }
    
      /**
       * Creates a scheduled executor service that runs each task in the thread that invokes {@code
       * execute/submit/schedule}, as in {@link CallerRunsPolicy}. This applies both to individually
       * submitted tasks and to collections of tasks submitted via {@code invokeAll}, {@code invokeAny},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/testdata/harness.go

    	return 42
    }
    
    func preClear() int {
    	return 42
    }
    
    // This test is designed to ensure that write errors are properly
    // handled by the code that writes out coverage data. It repeatedly
    // invokes the 'emit to writer' apis using a specially crafted writer
    // that captures the total number of expected writes, then replays the
    // execution N times with a manufactured write error at the
    // appropriate spot.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       */
      public static ListeningScheduledExecutorService noOpScheduledExecutor() {
        return new NoOpScheduledExecutorService();
      }
    
      /**
       * Creates a scheduled executor service that runs each task in the thread that invokes {@code
       * execute/submit/schedule}, as in {@link CallerRunsPolicy}. This applies both to individually
       * submitted tasks and to collections of tasks submitted via {@code invokeAll}, {@code invokeAny},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. tests/test_ws_router.py

            return wrapped_app
    
        return middleware_constructor
    
    
    def test_depend_validation():
        """
        Verify that a validation in a dependency invokes the correct exception handler
        """
        caught = []
    
        @websocket_middleware
        async def catcher(websocket, call_next):
            try:
                return await call_next()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 19:08:14 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/rbac.go

    	// supplied, you do not have to fail the request.  If you cannot, you should indicate the error along
    	// with your denial.
    	RulesFor(subject user.Info, namespace string) ([]rbacv1.PolicyRule, error)
    
    	// VisitRulesFor invokes visitor() with each rule that applies to a given user in a given namespace,
    	// and each error encountered resolving those rules. Rule may be nil if err is non-nil.
    	// If visitor() returns false, visiting is short-circuited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 7.8K bytes
    - Viewed (0)
Back to top