Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 782 for doBind (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

             * by doing some change (for example by changing POM and fixing the problematic plugin configuration).
             */
            INTERNAL,
    
            /**
             * Issue (present in some plugin) is "developer actionable" (of given plugin, by changing code and doing
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. releasenotes/notes/drop-default-tracing.yaml

          `istioctl x precheck --from-version=1.21` can automatically detect if you may be impacted by this change.
    
          If you previously had tracing enabled implicitly, you can enable it by doing one of:
          * Installing with `--set compatibilityVersion=1.21`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
  3. 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)
  4. hack/verify-import-boss.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    kube::util::require-jq
    
    # Doing it this way is MUCH faster than simply saying "all", and there doesn't
    # seem to be a simpler way to express "this whole workspace".
    packages=()
    kube::util::read-array packages < <(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/RequestProtocol.java

     */
    
    package org.gradle.process.internal.worker.request;
    
    /**
     * Protocol for controlling a worker process.
     * <p>
     * This protocol is used by the daemon to control the current work the worker process is doing.
     */
    public interface RequestProtocol {
        /**
         * Runs the given request in the worker process.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 09:27:37 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/copyelim.go

    			break
    		}
    		if advance {
    			slow = slow.Args[0]
    		}
    		advance = !advance
    	}
    
    	// The answer is w.  Update all the copies we saw
    	// to point directly to w.  Doing this update makes
    	// sure that we don't end up doing O(n^2) work
    	// for a chain of n copies.
    	for v != w {
    		x := v.Args[0]
    		v.SetArg(0, w)
    		v = x
    	}
    	return w
    }
    
    // copyelimValue ensures that no args of v are copies.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/transport/Transport.java

        protected HashMap response_map = new HashMap( 4 );
    
        protected abstract void makeKey( Request request ) throws IOException;
        protected abstract Request peekKey() throws IOException;
        protected abstract void doSend( Request request ) throws IOException;
        protected abstract void doRecv( Response response ) throws IOException;
        protected abstract void doSkip() throws IOException;
    
        public synchronized void sendrecv( Request request,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  8. test/fixedbugs/bug444.go

    // Copyright 2012 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.
    
    // The no-op conversion here used to confuse the compiler
    // into doing a load-effective-address of nil.
    // See issue 3670.
    
    package main
    
    import "reflect"
    
    type T interface {}
    
    var x bool
    
    func main() {
            reflect.TypeOf(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 645 bytes
    - Viewed (0)
  9. test/fixedbugs/issue5515.go

    // run
    
    // 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 5515: miscompilation doing inlining in generated method wrapper
    
    package main
    
    type T uint32
    
    func main() {
            b := make([]T, 8)
            b[0] = 0xdeadbeef
            rs := Slice(b)
            sort(rs)
    }
    
    type Slice []T
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 03:23:21 UTC 2013
    - 597 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java

    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class DeleteForm {
    
        @Size(max = 1000)
        public String q;
    
        @Required
        public String docId;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 878 bytes
    - Viewed (0)
Back to top