Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,434 for Allows (0.13 sec)

  1. test/fixedbugs/issue5089.go

    // errorcheck
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 5089: gc allows methods on non-locals if symbol already exists
    
    package p
    
    import "bufio"
    
    func (b *bufio.Reader) Buffered() int { // ERROR "non-local|redefinition"
    	return -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 18 17:53:42 UTC 2018
    - 362 bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

            javaClassFile("Parent.class").assertDoesNotExist()
        }
    
        def "source compatibility matching the compiler version allows accessing Java language features"() {
            def jdk = AvailableJavaHomes.getJdk(JavaVersion.VERSION_17)
    
            buildFile << """
                apply plugin: "java"
    
                java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/parse.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cpu
    
    import "strconv"
    
    // parseRelease parses a dot-separated version number. It follows the semver
    // syntax, but allows the minor and patch versions to be elided.
    //
    // This is a copy of the Go runtime's parseRelease from
    // https://golang.org/cl/209597.
    func parseRelease(rel string) (major, minor, patch int, ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 17:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/traffic.go

    	viaIngress bool
    	// sourceMatchers allows adding additional filtering for workload agnostic cases to test using fewer clients
    	sourceMatchers []match.Matcher
    	// targetMatchers allows adding additional filtering for workload agnostic cases to test using fewer targets
    	targetMatchers []match.Matcher
    	// comboFilters allows conditionally filtering based on pairs of apps
    	comboFilters []echotest.CombinationFilter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. releasenotes/notes/agent-xds-proxy.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue: []
    releaseNotes:
    - |
      **Updated** XDS connections from Envoy will be proxied through the Istio sidecar agent. Doing so allows
      for consolidation of multiple connections from a pod to Istiod into a single connection, in addition to
      other planned future improvements. This feature (and change) is transparent to users and is enabled by default.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 13 03:21:34 UTC 2020
    - 551 bytes
    - Viewed (0)
  6. src/runtime/mem_js.go

    // license that can be found in the LICENSE file.
    
    //go:build js
    
    package runtime
    
    // resetMemoryDataView signals the JS front-end that WebAssembly's memory.grow instruction has been used.
    // This allows the front-end to replace the old DataView object with a new one.
    //
    //go:wasmimport gojs runtime.resetMemoryDataView
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 457 bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	// owner: @mimowo
    	// kep: https://kep.k8s.io/3850
    	// alpha: v1.28
    	// beta: v1.29
    	//
    	// Allows users to specify counting of failed pods per index.
    	JobBackoffLimitPerIndex featuregate.Feature = "JobBackoffLimitPerIndex"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/4368
    	// alpha: v1.30
    	//
    	// Allows to delegate reconciliation of a Job object to an external controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/GraphConstants.java

          "Nodes %s and %s are already connected by a different edge. To construct a graph "
              + "that allows parallel edges, call allowsParallelEdges(true) on the Builder.";
      static final String SELF_LOOPS_NOT_ALLOWED =
          "Cannot add self-loop edge on node %s, as self-loops are not allowed. To construct a graph "
              + "that allows self-loops, call allowsSelfLoops(true) on the Builder.";
      static final String NOT_AVAILABLE_ON_UNDIRECTED =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

            return forbid(path, false, ['GET'], ok())
        }
    
        /**
         * Allows one GET request for the given URL. Reads the request content from the given file.
         */
        HttpResourceInteraction expectGet(String path, File srcFile) {
            return expect(path, false, ['GET'], fileHandler(path, srcFile))
        }
    
        /**
         * Allows one GET request for the given URL. Returns an empty 200 OK response.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. src/log/internal/internal.go

    // Package internal contains definitions used by both log and log/slog.
    package internal
    
    // DefaultOutput holds a function which calls the default log.Logger's
    // output function.
    // It allows slog.defaultHandler to call into an unexported function of
    // the log package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 18:33:50 UTC 2023
    - 487 bytes
    - Viewed (0)
Back to top