Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 650 for Equate (0.1 sec)

  1. helm/minio/templates/secrets.yaml

    data:
      rootUser: {{ include "minio.root.username" . | b64enc | quote }}
      rootPassword: {{ include "minio.root.password" . | b64enc | quote }}
      {{- if .Values.etcd.clientCert }}
      etcd_client.crt: {{ .Values.etcd.clientCert | toString | b64enc | quote }}
      {{- end }}
      {{- if .Values.etcd.clientCertKey }}
      etcd_client.key: {{ .Values.etcd.clientCertKey | toString | b64enc | quote }}
      {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 12 04:09:29 UTC 2023
    - 706 bytes
    - Viewed (0)
  2. manifests/charts/istio-operator/templates/deployment.yaml

                  value: {{.Values.watchedNamespaces | quote}}
                - name: LEADER_ELECTION_NAMESPACE
                  value: {{.Release.Namespace | quote}}
                - name: POD_NAME
                  valueFrom:
                    fieldRef:
                      fieldPath: metadata.name
                - name: OPERATOR_NAME
                  value: {{.Release.Namespace | quote}}
                - name: WAIT_FOR_RESOURCES_TIMEOUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractCommandLineOrderTaskIntegrationTest.groovy

                if (task.project.build == this.project.build) {
                    return quote(task.path)
                } else {
                    return "gradle.includedBuild(${quote(task.project.build.name)}).task(${quote(task.path)})"
                }
            }
        }
    
        static String quote(String text) {
            return "'${text}'"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/gradient_checker.h

    /// This function adds operations to the graph associated with 'scope'.
    ///
    /// Examples:
    /// if y = Square(x), where x (and so y) are DT_FLOAT,
    /// <X_T, Y_T, JAC_T> should be <float, float, float>
    ///
    /// if y = Square(x), where x (and so y) are DT_DOUBLE,
    /// <X_T, Y_T, JAC_T> should be <double, double, double>
    ///
    /// if y = Square(x), where x (and so y) are DT_COMPLEX64,
    /// <X_T, Y_T, JAC_T> should be <complex64, complex64, float>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:35:17 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/templates/_affinity.tpl

            {{- range $key, $val := .global.arch }}
              {{- if gt ($val | int) 0 }}
              - {{ $key | quote }}
              {{- end }}
            {{- end }}
            {{- end }}
            {{- range $key, $val := $nodeSelector }}
            - key: {{ $key }}
              operator: In
              values:
              - {{ $val | quote }}
            {{- end }}
      {{- end }}
    {{- end }}
    
    {{- define "nodeAffinityPreferredDuringScheduling" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/testdata/issue53989/main.go

    // crash.
    
    package main
    
    import (
    	"plugin"
    
    	"testplugin/issue53989/p"
    )
    
    func main() {
    	p.Square(7) // call the function in main executable
    
    	p, err := plugin.Open("issue53989.so")
    	if err != nil {
    		panic(err)
    	}
    	f, err := p.Lookup("Square")
    	if err != nil {
    		panic(err)
    	}
    	f.(func(int))(7) // call the plugin one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 751 bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/kt/AccessHeaders.kt

    /*
     * Copyright (C) 2014 Square, Inc.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/gover/mod_test.go

    	{"toolchain", "go1.2", "go1.3", -1},
    	{"toolchain", "go1.2", "go1.2", 0},
    	{"toolchain", "1.2", "1.3", -1},  // accepted but non-standard
    	{"toolchain", "v1.2", "v1.3", 0}, // equal because invalid
    	{"rsc.io/quote", "v1.2", "v1.3", -1},
    	{"rsc.io/quote", "1.2", "1.3", 0}, // equal because invalid
    }
    
    func TestModIsValid(t *testing.T) { test2(t, modIsValidTests, "ModIsValid", ModIsValid) }
    
    var modIsValidTests = []testCase2[string, string, bool]{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 17:51:28 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. pkg/jwt/routing.go

    )
    
    // HeaderJWTClaim is the special header name used in virtual service for routing based on JWT claims.
    const HeaderJWTClaim = "@request.auth.claims"
    
    type Separator int
    
    const (
    	Dot Separator = iota
    	Square
    )
    
    type RoutingClaim struct {
    	Match     bool
    	Separator Separator
    	Claims    []string
    }
    
    func ToRoutingClaim(headerName string) RoutingClaim {
    	rc := RoutingClaim{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_support_buildx.txt

    # commands tidy executes.
    # Verifies golang.org/issue/35849
    
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote
    go mod tidy
    ! stderr 'get '$GOPROXY
    
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote
    go mod tidy -x
    stderr 'get '$GOPROXY
    
    -- go.mod --
    module example.com/mod
    
    -- a.go --
    package mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:40 UTC 2022
    - 360 bytes
    - Viewed (0)
Back to top