Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for wrongZip (0.43 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

            settingsFile << """
                include 'producer'
            """
            file("producer/build.gradle") << """
                plugins {
                    id("base")
                }
    
                task wrongZip(type: Zip) {
                    archiveBaseName = "wrong"
                }
                task firstZip(type: Zip) {
                    archiveBaseName = "first"
                }
    
                configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/all.rc

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    rfork n
    
    if(! test -f make.rc){
    	echo 'all.rc must be run from $GOROOT/src' >[1=2]
    	exit wrongdir
    }
    
    . ./make.rc --no-banner $*
    bind -b $GOROOT/bin /bin
    ./run.rc --no-rebuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 20 04:53:46 UTC 2020
    - 388 bytes
    - Viewed (0)
  3. src/run.rc

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    rfork e
    
    if(! test -f ../bin/go){
    	echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
    	exit wrongdir
    }
    
    GOENV=off
    eval `{../bin/go tool dist env}
    
    GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 406 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/dryrun_test.go

    		}
    		unstructured.SetNestedField(u.Object, "value", "field")
    		return u, nil, nil
    	}
    	wrongID := types.UID("wrong-uid")
    	myID := types.UID("my-uid")
    	err = s.GuaranteedUpdate(context.Background(), "key", obj, false, &storage.Preconditions{UID: &wrongID}, updateFunc, true, nil)
    	if e, ok := err.(*storage.StorageError); !ok || e.Code != storage.ErrCodeInvalidObj {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/lookup.go

    		return nil, false
    	}
    
    	const (
    		ok = iota
    		notFound
    		wrongName
    		unexported
    		wrongSig
    		ambigSel
    		ptrRecv
    		field
    	)
    
    	state := ok
    	var m *Func // method on T we're trying to implement
    	var f *Func // method on V, if found (state is one of ok, wrongName, wrongSig)
    
    	if u, _ := under(V).(*Interface); u != nil {
    		tset := u.typeSet()
    		for _, m = range methods {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/go/types/lookup.go

    		return nil, false
    	}
    
    	const (
    		ok = iota
    		notFound
    		wrongName
    		unexported
    		wrongSig
    		ambigSel
    		ptrRecv
    		field
    	)
    
    	state := ok
    	var m *Func // method on T we're trying to implement
    	var f *Func // method on V, if found (state is one of ok, wrongName, wrongSig)
    
    	if u, _ := under(V).(*Interface); u != nil {
    		tset := u.typeSet()
    		for _, m = range methods {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/make.rc

    # to include all cgo related files, .c and .go file with "cgo"
    # build directive, in the build. Set it to 0 to ignore them.
    
    rfork e
    if(! test -f run.rc){
    	echo 'make.rc must be run from $GOROOT/src' >[1=2]
    	exit wrongdir
    }
    
    # Clean old generated file that will cause problems in the build.
    rm -f ./runtime/runtime_defs.go
    
    # Determine the host compiler toolchain.
    eval `{grep '^(CC|LD|O)=' /$objtype/mkfile}
    
    vflag=()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy.go

    		obj.Spec.Selector.MatchLabels[batch.ControllerUidLabel] = string(obj.ObjectMeta.UID)
    	}
    	// If the user specified matchLabel controller-uid=$WRONGUID, then it should fail
    	// in validation, either because the selector does not match the pod template
    	// (controller-uid=$WRONGUID does not match controller-uid=$UID, which we applied
    	// above, or we will reject in validation because the template has the wrong
    	// labels.
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top