Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 733 for hand (0.04 sec)

  1. pkg/config/analysis/analyzers/deprecation/deprecation.go

    	},
    }
    
    // Currently we don't have an Istio API that tells which Istio API fields are deprecated.
    // Run `find . -name "*.proto" -exec grep -i "deprecated=true" \{\} \; -print`
    // to see what is deprecated.  This analyzer is hand-crafted.
    
    // Metadata implements analyzer.Analyzer
    func (*FieldAnalyzer) Metadata() analysis.Metadata {
    	deprecationInputs := []config.GroupVersionKind{
    		gvk.VirtualService,
    		gvk.Sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/arguments.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"fmt"
    	"sort"
    	"strings"
    
    	"github.com/pkg/errors"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/klog/v2"
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    // ArgumentsToCommand takes two Arg slices, one with the base arguments and one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 11:01:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/syscall/mkall.sh

    # Some C libraries present alternate versions for binary compatibility
    # and translate them on the way in and out of system calls, but
    # there is almost always a #define that can get the real ones.
    # See types_darwin.c and types_linux.c for examples.
    #
    # * zerror_${GOOS}_${GOARCH}.go
    #
    # This machine-generated file defines the system's error numbers,
    # error strings, and signal numbers.  The generator is "mkerrors.sh".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_go_version_missing.txt

    go mod tidy
    cmpenv go.mod go.mod.tidy
    
    # On the other hand, if we jump straight to 'go mod tidy',
    # the requirements remain tidy from the start.
    
    cp go.mod.orig go.mod
    go mod tidy
    cmpenv go.mod go.mod.tidy
    
    
    # The updated version should have been written back to go.mod, so now the 'go'
    # directive is explicit. -mod=vendor should trigger by default, and the stronger
    # Go 1.14 consistency check should apply.
    ! go list all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/diff/diff.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package diff
    
    import (
    	"bytes"
    	"fmt"
    	"reflect"
    	"strings"
    	"text/tabwriter"
    
    	"github.com/google/go-cmp/cmp"
    	"k8s.io/apimachinery/pkg/util/dump"
    )
    
    func legacyDiff(a, b interface{}) string {
    	return cmp.Diff(a, b)
    }
    
    // StringDiff diffs a and b and returns a human readable diff.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/gover/version.go

    	// that do not declare a Go version. The go command has been
    	// writing go versions to modules since Go 1.12, so a go.mod
    	// without a version is either very old or recently hand-written.
    	// Since we can't tell which, we have to assume it's very old.
    	// The semantics of the go.mod changed at Go 1.17 to support
    	// graph pruning. If see a go.mod without a go line, we have to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
    // for more examples.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
    // for more examples.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.java

        // the behaviour of the non-GWT implementation of newConcurrentHashSet().
        // On the other hand HashSet might be better for code size if apps aren't
        // already using Collections.newSetFromMap and ConcurrentHashMap.
        return Collections.newSetFromMap(new ConcurrentHashMap<E, Boolean>());
      }
    
      static <E> Set<E> newLinkedHashSetWithExpectedSize(int expectedSize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 29 18:16:45 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesOptimizer.java

     *
     * <ul>
     * <li> COMPILE dependencies are visible everywhere. </li>
     * <li> PROVIDED dependencies are visible both when compiling main and test code as well as when running tests (but not when running main). </li>
     * <li> RUNTIME dependencies are visible when running main and test code.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top