Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for Fixes (0.06 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	//
    	// The URL may be relative. If so, the base URL is that of the
    	// Analyzer that produced the diagnostic;
    	// see https://pkg.go.dev/net/url#URL.ResolveReference.
    	URL string
    
    	// SuggestedFixes is an optional list of fixes to address the
    	// problem described by the diagnostic, each one representing
    	// an alternative strategy; at most one may be applied.
    	SuggestedFixes []SuggestedFix
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    					AddRunFunction(func(leaderStop <-chan struct{}) {
    						log.Infof("starting namespace controller for cluster %s", cluster.ID)
    						nc := NewNamespaceController(client, m.caBundleWatcher)
    						// Start informers again. This fixes the case where informers for namespace do not start,
    						// as we create them only after acquiring the leader lock
    						// Note: stop here should be the overall pilot stop, NOT the leader election stop. We are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

          return failure();
        }
        op_state.addAttributes(attrs);
    
        Operation* tf_op = rewriter.create(op_state);
        rewriter.replaceOp(op, tf_op->getResults());
    
        // Special type fixes for TF Resource Tensors that are casted to
        // Int32 tensor during MLIR->TFLite flatbuffer conversion.
        // TODO(b/146131919): correct handling of resource type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. hack/verify-vendor.sh

    # limitations under the License.
    
    # This script checks whether fixing of vendor directory or go.mod is needed or
    # not. We should run `hack/update-vendor.sh` if actually fixes them.
    # Usage: `hack/verify-vendor.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
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/configcontroller.go

    				AddRunFunction(func(leaderStop <-chan struct{}) {
    					ingressSyncer := ingress.NewStatusSyncer(s.environment.Watcher, s.kubeClient)
    					// Start informers again. This fixes the case where informers for namespace do not start,
    					// as we create them only after acquiring the leader lock
    					// Note: stop here should be the overall pilot stop, NOT the leader election stop. We are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/build.gradle.kts

        implementation(platform(libs.sshdScp))
        implementation(libs.sshdSftp)
        implementation(platform(libs.sshdSftp))
    
        compileOnly(project(":configuration-cache")) {
            because("""Fixes:
                compiler message file broken: key=compiler.misc.msg.bug arguments=11.0.21, {1}, {2}, {3}, {4}, {5}, {6}, {7}
                java.lang.AssertionError: typeSig ERROR""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    * Fixes bugs that make apiserver panic when aggregating valid but not well formed OpenAPI spec ([#63635](https://github.com/kubernetes/kubernetes/pull/63635), [@roycaihw](https://github.com/roycaihw))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. testing/performance/docs/performance-bisect.md

    ```
    
    ## Verify the results
    
    In order to verify that the commit really introduced the performance regression, it
    is advisable to revert the commit on `HEAD` and see if that
    fixes the regression.
    
    Moreover, one should check if the test failures have not been caused by something other than the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

                return FixedSideEffect.of(value, sideEffect);
            }
    
            /**
             * Extracts the side effect from the {@code value} if any, and fixes it on that value.
             * <p>
             * If the value is {@link Value#isMissing() missing} then null is returned.
             *
             * @see #fixed
             */
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    ### Fixes
    
    * ⬆ Upgrade Swagger UI copy of `oauth2-redirect.html` to include fixes for flavors of authorization code flows in Swagger UI. PR [#3439](https://github.com/tiangolo/fastapi/pull/3439) initial PR by [@koonpeng](https://github.com/koonpeng).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top