Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,701 for generations (0.74 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ProjectLayoutSetupRegistry.java

            return result;
        }
    
        public List<BuildGenerator> getGeneratorsFor(ComponentType componentType) {
            List<BuildGenerator> generators = getGenerators();
            List<BuildGenerator> result = new ArrayList<>(generators.size());
            for (BuildGenerator generator : generators) {
                if (generator.getComponentType().equals(componentType)) {
                    result.add(generator);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 20:06:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/collateral/predicate.go

    )
    
    // Predicates are a set of predicates to apply when generating collaterals.
    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.
    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. releasenotes/notes/28003.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 28003
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 10 21:53:32 UTC 2020
    - 171 bytes
    - Viewed (0)
  4. releasenotes/notes/proxy-stats-inclusion.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 26546
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 15 20:22:21 UTC 2020
    - 159 bytes
    - Viewed (0)
  5. pkg/registry/discovery/endpointslice/strategy.go

    		ogNewMeta.Generation = ogOldMeta.Generation + 1
    	}
    
    	newEPS.ObjectMeta = ogNewMeta
    	oldEPS.ObjectMeta = ogOldMeta
    
    	dropDisabledFieldsOnUpdate(oldEPS, newEPS)
    	dropTopologyOnV1(ctx, oldEPS, newEPS)
    }
    
    // Validate validates a new EndpointSlice.
    func (endpointSliceStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 10:00:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. okcurl/README.md

    OkCurl
    ======
    
    _A curl for the next-generation web._
    
    OkCurl is an OkHttp-backed curl clone which allows you to test OkHttp's HTTP engine (including
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 09 21:19:04 UTC 2016
    - 178 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    	newCRD := obj.(*apiextensions.CustomResourceDefinition)
    	oldCRD := old.(*apiextensions.CustomResourceDefinition)
    	newCRD.Status = oldCRD.Status
    
    	// Any changes to the spec increment the generation number, any changes to the
    	// status should reflect the generation number of the corresponding object. We push
    	// the burden of managing the status onto the clients because we can't (in general)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. releasenotes/notes/cds-cache.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 26732
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 08 19:34:01 UTC 2021
    - 245 bytes
    - Viewed (0)
  9. pkg/generated/openapi/OWNERS

      - roycaihw
      - liggitt
      # APIs frequently hit this directory for zz_generate.openapi.go
      - api-approvers
    reviewers:
      - sttts
      - roycaihw
      - liggitt
    labels:
      - sig/api-machinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 19:27:53 UTC 2023
    - 231 bytes
    - Viewed (0)
  10. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    	oldPriorityLevelConfiguration := old.(*flowcontrol.PriorityLevelConfiguration)
    
    	// Spec updates bump the generation so that we can distinguish between status updates.
    	if !apiequality.Semantic.DeepEqual(newPriorityLevelConfiguration.Spec, oldPriorityLevelConfiguration.Spec) {
    		newPriorityLevelConfiguration.Generation = oldPriorityLevelConfiguration.Generation + 1
    	}
    	newPriorityLevelConfiguration.Status = oldPriorityLevelConfiguration.Status
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top