Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 209 for vflag (3.81 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

            unique << [true, false]
        }
    
        def "fails if trying to resolve a locked configuration with #flag"() {
            buildFile << """
    dependencyLocking {
        lockAllConfigurations()
        lockMode = LockMode.${lockMode()}
    }
    
    configurations {
        lockedConf {
            resolutionStrategy {
                $flag()
            }
        }
    }
    
    dependencies {
        lockedConf 'org:foo:1.0'
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/common.go

    limitations under the License.
    */
    
    package upgrade
    
    import (
    	"bufio"
    	"bytes"
    	"io"
    	"os"
    	"time"
    
    	"github.com/pkg/errors"
    	"github.com/spf13/pflag"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	fakediscovery "k8s.io/client-go/discovery/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/assign.go

    		ptr2, len2 := backingArrayPtrLen(l2)
    		ncopy = mkcall1(fn, types.Types[types.TINT], &nodes, reflectdata.AppendElemRType(base.Pos, n), ptr1, len1, ptr2, len2)
    	} else if base.Flag.Cfg.Instrumenting && !base.Flag.CompilingRuntime {
    		// rely on runtime to instrument:
    		//  copy(s[idx:], l2)
    		// l2 can be a slice or string.
    		slice := ir.NewSliceExpr(base.Pos, ir.OSLICE, s, idx, nil, nil)
    		slice.SetType(s.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    			}
    
    			// Flow backwards from the control value to find the
    			// flag load. We don't know what lowered ops we're
    			// looking for, but all current arches produce a
    			// single op that does the memory load from the flag
    			// address, so we look for that.
    			var load *ssa.Value
    			v := decisionBlock.Controls[0]
    			for {
    				if v.MemoryArg() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/testing/testserver.go

    			}
    		}
    		os.RemoveAll(result.TmpDir)
    	}
    	defer func() {
    		if result.TearDownFn == nil {
    			tearDown()
    		}
    	}()
    
    	fs := pflag.NewFlagSet("test", pflag.PanicOnError)
    
    	s := options.NewServerRunOptions()
    	for _, f := range s.Flags().FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/go.sum

    github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
    github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA=
    github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
    github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
    github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gccgo.go

    			if strings.HasPrefix(line, ldflagsPrefix) {
    				flag := line[len(ldflagsPrefix):]
    				// Every _cgo_flags file has -g and -O2 in _CGO_LDFLAGS
    				// but they don't mean anything to the linker so filter
    				// them out.
    				if flag != "-g" && !strings.HasPrefix(flag, "-O") {
    					cgoldflags = append(cgoldflags, flag)
    				}
    			}
    		}
    		return nil
    	}
    
    	var arArgs []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        override fun visit(name: String?, value: Any?) {
            @Suppress("unchecked_cast")
            output.add(value as T)
        }
    }
    
    
    private
    operator fun Int.contains(flag: Int) =
        and(flag) == flag
    
    
    internal
    fun nonAvailable(type: String): InaccessibilityReason =
        InaccessibilityReason.NonAvailable(type)
    
    
    internal
    fun nonPublic(type: String): InaccessibilityReason =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // +k8s:deepcopy-gen=true
    type QuantityValue struct {
    	Quantity
    }
    
    // Set implements pflag.Value.Set and Go flag.Value.Set.
    func (q *QuantityValue) Set(s string) error {
    	quantity, err := ParseQuantity(s)
    	if err != nil {
    		return err
    	}
    	q.Quantity = quantity
    	return nil
    }
    
    // Type implements pflag.Value.Type.
    func (q QuantityValue) Type() string {
    	return "quantity"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. tests/integration/security/egress_sidecar_tls_origination_test.go

    					expectedResponse: ingressutil.ExpectedResponse{
    						StatusCode: http.StatusOK,
    					},
    				},
    				// Mutual TLS origination from an unauthorized sidecar to https endpoint
    				// This will result in a 503 with the UH flag because the cluster will
    				// stay warming until a valid secret is sent.
    				{
    					name:            "unauthorized sidecar",
    					credentialToUse: credNameGeneric,
    					from:            apps.Ns1.B,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top