Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for deselecting (0.26 sec)

  1. pkg/controller/util/selectors/bimultimap.go

    	}
    	selecting := m.selectingByLabeled[labelsKey]
    	selecting.refCount++
    	for _, sObject := range selecting.objects {
    		// Associate labeled with selecting.
    		labeled := m.labeledBySelecting[sObject.selectorKey]
    		labeled.objects[labeledObject.key] = labeledObject
    	}
    }
    
    // Delete removes a labeled object and incoming associations.
    func (m *BiMultimap) Delete(key Key) {
    	m.mux.Lock()
    	defer m.mux.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 21:41:32 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. pkg/collateral/predicate.go

    type Predicates struct {
    	SelectEnv    SelectEnvFn
    	SelectMetric SelectMetricFn
    }
    
    // SelectEnvFn is a predicate function for selecting environment variables when generating collateral documents.
    type SelectEnvFn func(env.Var) bool
    
    // SelectMetricFn is a predicate function for selecting metrics when generating collateral documents.
    type SelectMetricFn func(monitoring.MetricDefinition) bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/compact/compact.go

    //
    // Common language tags (at least all for which locale information is defined
    // in CLDR) are assigned a unique index. Each Tag is associated with such an
    // ID for selecting language-related resources (such as translations) as well
    // as one for selecting regional defaults (currency, number formatting, etc.)
    //
    // It may want to export this functionality at some point, but at this point
    // this is only available for use within x/text.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. releasenotes/notes/fix-se-stale-ep.yaml

    # issue is a list of GitHub issues resolved in this note.
    issue:
      - https://github.com/istio/istio/issues/35404
      - 35404
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 18:58:19 UTC 2021
    - 293 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/testdata/issue14669.go

    // Copyright 2016 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 14669: test that fails when build with CGO_CFLAGS selecting
    // optimization.
    
    package p
    
    /*
    const int E = 1;
    
    typedef struct s {
    	int       c;
    } s;
    */
    import "C"
    
    func F() {
    	_ = C.s{
    		c: C.E,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 368 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentIdResolveResult.java

         * the selector. This method is used for dynamic modules, when there's often more than one
         * version which can match, but we actually select (or reject) more before selecting.
         *
         * @param unmatchedVersions a collection of unmatched versions
         */
        void unmatched(Collection<String> unmatchedVersions);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilityResolutionDetails.java

    import java.util.List;
    
    /**
     * Gives access to the resolution details of a single capability conflict.
     * This class may be used to resolve a capability conflict by either selecting
     * explicitly one of the candidates, or selecting the one with the highest
     * version of the capability.
     *
     * @since 5.6
     */
    @HasInternalProtocol
    public interface CapabilityResolutionDetails {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. releasenotes/notes/25280.yaml

    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 464 bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/FileNormalizationSpec.java

    import org.gradle.internal.fingerprint.DirectorySensitivity;
    import org.gradle.internal.fingerprint.FileNormalizer;
    import org.gradle.internal.fingerprint.LineEndingSensitivity;
    
    /**
     * Specifies criteria for selecting a {@link FileCollectionFingerprinter}.
     */
    public interface FileNormalizationSpec {
        FileNormalizer getNormalizer();
    
        DirectorySensitivity getDirectorySensitivity();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIssuesIntegrationTest.groovy

                        def selection =
                            details.candidates.find { it.variantName.endsWith('PrefApiElements') }
                        println("Selecting \$selection from \${details.candidates}")
                        details.select(selection)
                    }
                }
    
                configurations.runtimeClasspath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top