Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for palmer (0.25 sec)

  1. tests/integration/pilot/common/routing.go

    		}
    	}
    
    	// clears the To to avoid echo internals trying to match the protocol with the port on echo.Config
    	noTarget := func(_ echo.Caller, opts *echo.CallOptions) {
    		opts.To = nil
    	}
    	// allows setting the target indirectly via the host header
    	fqdnHostHeader := func(src echo.Caller, opts *echo.CallOptions) {
    		if opts.HTTP.Headers == nil {
    			opts.HTTP.Headers = make(http.Header)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"family_woman_woman_girl_boy":          "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
    	"family_woman_woman_girl_girl":         "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
    	"farmer":                               "\U0001f9d1\u200d\U0001f33e",
    	"faroe_islands":                        "\U0001f1eb\U0001f1f4",
    	"fast_forward":                         "\u23e9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    func dirToImportPath(dir string) string {
    	return pathpkg.Join("_", strings.Map(makeImportValid, filepath.ToSlash(dir)))
    }
    
    func makeImportValid(r rune) rune {
    	// Should match Go spec, compilers, and ../../go/parser/parser.go:/isValidImport.
    	const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
    	if !unicode.IsGraphic(r) || unicode.IsSpace(r) || strings.ContainsRune(illegalChars, r) {
    		return '_'
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    DiagnosingMatcher() Method Detail matches public final boolean matches(java.lang.Object item) Description copied from interface: Matcher Evaluates the matcher for argument item. This method matches against Object, instead of the generic type T. This is because the caller of the Matcher does not know at runtime what the type is (because of type erasure with Java generics). It is down to the implementations to check the correct type. Parameters: item - the object against which the matcher is evaluated. Returns: true...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    if (applyRole) {
                        applyRole();
                    }
                }
    
                // Caller should place property value on the top of the stack
                protected void applyRole() {
                    // GENERATE getFactory().applyRole(<value>)
                    _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    			vcfg.Standard[p1.ImportPath] = true
    		}
    	}
    }
    
    // VetTool is the path to an alternate vet tool binary.
    // The caller is expected to set it (if needed) before executing any vet actions.
    var VetTool string
    
    // VetFlags are the default flags to pass to vet.
    // The caller is expected to set them before executing any vet actions.
    var VetFlags []string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    vik.no
    vikna.no
    vindafjord.no
    volda.no
    voss.no
    varoy.no
    værøy.no
    vagan.no
    vågan.no
    voagat.no
    vagsoy.no
    vågsøy.no
    vaga.no
    vågå.no
    valer.ostfold.no
    våler.østfold.no
    valer.hedmark.no
    våler.hedmark.no
    
    // np : http://www.mos.com.np/register.html
    *.np
    
    // nr : http://cenpac.net.nr/dns/index.html
    // Submitted by registry <******@****.***>
    nr
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

        ./easyrsa init-pki
        # this puts the cert into pki/ca.crt and the key into pki/private/ca.key
        # PRIMARY_CN (expected to be) defined by caller
        # shellcheck disable=SC2153
        ./easyrsa --batch "--req-cn=${PRIMARY_CN}@$(date +%s)" build-ca nopass
        # SANS (expected to be) defined by caller
        # shellcheck disable=SC2153
        ./easyrsa --subject-alt-name="${SANS}" build-server-full "${MASTER_NAME}" nopass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// LoweredGetCallerPC evaluates to the PC to which its "caller" will return.
    		// I.e., if f calls g "calls" getcallerpc,
    		// the result should be the PC within f that g will return to.
    		// See runtime/stubs.go for a more detailed discussion.
    		{name: "LoweredGetCallerPC", reg: gp01, rematerializeable: true},
    		// LoweredGetCallerSP returns the SP of the caller of the current function. arg0=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    #include "mlir/Interfaces/ControlFlowInterfaces.h"  // from @llvm-project
    #include "mlir/Interfaces/InferTypeOpInterface.h"  // from @llvm-project
    #include "mlir/Interfaces/SideEffectInterfaces.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/InliningUtils.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top