Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for associateBy (1.34 sec)

  1. src/cmd/link/internal/loader/loader.go

    		return Aux{}
    	}
    	r, li := l.toLocal(i)
    	if j >= r.NAux(li) {
    		return Aux{}
    	}
    	return Aux{r.Aux(li, j), r, l}
    }
    
    // WasmImportSym returns the auxiliary WebAssembly import symbol associated with
    // a given function symbol. The aux sym only exists for Go function stubs that
    // have been annotated with the //go:wasmimport directive.  The aux sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

          name: Multiplier
          type: integer
        name: v1beta1
        schema:
          openAPIV3Schema:
            description: BFDProfile represents the settings of the bfd session that can
              be optionally associated with a BGP session.
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                context.put(key, value);
            } else {
                context.remove(key);
            }
        }
    
        /**
         * Returns context value of this project associated with the given key or null if this project has no such value.
         */
        public Object getContextValue(String key) {
            if (context == null) {
                return null;
            }
            return context.get(key);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		}
    		return true, nil
    	}
    	return false, nil
    }
    
    // handleMapDiff diff between 2 maps `originalValueTyped` and `modifiedValue`,
    // puts the diff in the `patch` associated with `key`
    // key is the key associated with originalValue and modifiedValue.
    // originalValue, modifiedValue are the old and new value respectively.They are both maps
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	// PersistentVolumeClaimRetentionPolicy and specifies that
    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will not be deleted.
    	RetainPersistentVolumeClaimRetentionPolicyType PersistentVolumeClaimRetentionPolicyType = "Retain"
    	// RetentionPersistentVolumeClaimRetentionPolicyType specifies that
    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will be deleted in the scenario specified in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    The default for each option is `true`.
    
    ===== outputPerTestCase
    
    The `outputPerTestCase` option, when enabled, associates any output logging generated during a test case to that test case in the results.
    When disabled (the default) output is associated with the test class as whole and not the individual test cases (e.g. test methods) that produced the logging output.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    // The parameters contain the following values:
    //   - hashAlgorithm contains the associated hash identifier with NULL parameters
    //   - maskGenAlgorithm always contains the default mgf1SHA1 identifier
    //   - saltLength contains the length of the associated hash
    //   - trailerField always contains the default trailerFieldBC value
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    		if err != nil {
    			return oi, err
    		}
    		ctx = lkctx.Context()
    		defer lk.Unlock(lkctx)
    	}
    	// Read metadata associated with the object from all disks.
    	storageDisks := er.getDisks()
    
    	var metaArr []FileInfo
    	var errs []error
    
    	// Read metadata associated with the object from all disks.
    	if srcOpts.VersionID != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// PersistentVolumeClaimRetentionPolicy and specifies that
    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will not be deleted.
    	RetainPersistentVolumeClaimRetentionPolicyType PersistentVolumeClaimRetentionPolicyType = "Retain"
    	// RetentionPersistentVolumeClaimRetentionPolicyType specifies that
    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will be deleted in the scenario specified in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    			return queueAfterBackoff
    		}
    		return queueSkip
    	}
    
    	rejectorPlugins := pInfo.UnschedulablePlugins.Union(pInfo.PendingPlugins)
    	if len(rejectorPlugins) == 0 {
    		// No failed plugins are associated with this Pod.
    		// Meaning something unusual (a temporal failure on kube-apiserver, etc) happened and this Pod gets moved back to the queue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top