Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 127 for addLink (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    * a description of what fails, for example problems with a given task
    * a copy of the build failure,
    * the self-contained `configuration-cache-report.html` file.
    
    Test, test, test::
    Consider adding tests for your build logic.
    See the below section on <<configuration_cache#config_cache:testing, testing your build logic>> for the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// - PreBind for pod A gets called first, then fails with a temporary API error.
    	//   It removes the updated claim from the assume cache because of that.
    	// - PreBind for pod B gets called next and succeeds with adding the
    	//   allocation and its own reservedFor entry.
    	// - The assume cache is now not reflecting that the claim is allocated,
    	//   which could lead to reusing the same resource for some other claim.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		})
    	}
    }
    
    // The following set of Delete tests are testing the logic of adding `suggestion`
    // as a parameter with probably value of the current state.
    // Introducing it for GuaranteedUpdate cause a number of issues, so we're addressing
    // all of those upfront by adding appropriate tests:
    // - https://github.com/kubernetes/kubernetes/pull/35415
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                        }
                    }
                    else if ( !curReq.isResponseAsync() ) {
                        if ( log.isTraceEnabled() ) {
                            log.trace("Adding credits " + grantedCredits);
                        }
                        this.credits.release(grantedCredits);
                    }
                }
            }
    
            if ( !response.isReceived() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation_test.go

    			field.Invalid(field.NewPath("spec", "signerName"), "k8s.io/bar", "field is immutable"),
    		},
    	}, {
    		description: "adding certificate allowed",
    		oldBundle: &capi.ClusterTrustBundle{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "k8s.io:foo:bar",
    			},
    			Spec: capi.ClusterTrustBundleSpec{
    				SignerName:  "k8s.io/foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        Status RecordResult(
            const Edge* edge,
            const absl::flat_hash_map<const Node*, Node*>& node_images);
    
        // Creates the sequencer node if it doesn't exist, adding it to graph_out.
        Status MakeSequencingNode(const string& subgraph_name, Graph* graph_out);
    
        // If there is a sequencer node, adds a control edge from the sequencer to
        // the call node.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

              activation_fn: The activation function to be used. No activation
                function if None.
              use_biasadd: If True, use BiasAdd for adding bias, else use AddV2.
            """
            self.bias_size = bias_size
            self.activation_fn = activation_fn
            self.use_biasadd = use_biasadd
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	// debounce changes before a PushContext is eventually created.
    	Push *PushContext
    
    	// Start represents the time a push was started. This represents the time of adding to the PushQueue.
    	// Note that this does not include time spent debouncing.
    	Start time.Time
    
    	// Reason represents the reason for requesting a push. This should only be a fixed set of values,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	if ldr.SymGot(s) >= 0 {
    		return
    	}
    
    	Adddynsym(ldr, target, syms, s)
    	got := ldr.MakeSymbolUpdater(syms.GOT)
    	ldr.SetGot(s, int32(got.Size()))
    	got.AddUint(target.Arch, 0)
    
    	if target.IsElf() {
    		if target.Arch.PtrSize == 8 {
    			rela := ldr.MakeSymbolUpdater(syms.Rela)
    			rela.AddAddrPlus(target.Arch, got.Sym(), int64(ldr.SymGot(s)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                is KtDotQualifiedExpression -> findFakePackageToShorten(element)
                else -> error("Unexpected ${element::class}")
            }
        }
    
        /**
         * Returns `true` if adding [classToImport] import to the [file] might alter or break the
         * resolve of existing references in the file.
         *
         * N.B.: At the moment it might have both false positives and false negatives, since it does not
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top