Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,701 for generations (0.29 sec)

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

        private final ProjectGenerator descriptor;
        private final List<? extends BuildContentGenerator> generators;
    
        public SourceGeneratingBuildGenerator(ProjectGenerator projectGenerator, List<? extends BuildContentGenerator> generators) {
            super(projectGenerator, generators);
            this.generators = generators;
            this.descriptor = projectGenerator;
        }
    
        @Override
        public String getId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/wait.go

    	for _, ds := range daemonsets {
    		// Check if the wanting generation is same as the observed generation
    		// Only when the observed generation is the same as the generation,
    		// other checks will make sense. If not the same, daemon set is not
    		// ready
    		if ds.Status.ObservedGeneration != ds.Generation {
    			scope.Infof("DaemonSet is not ready: %s/%s. Observed generation: %d expected generation: %d",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. pilot/pkg/status/resourcelock.go

    			cfg := wp.get(target)
    			if cfg != nil {
    				// Check that generation matches
    				if strconv.FormatInt(cfg.Generation, 10) == target.Generation {
    					x, err := GetOGProvider(cfg.Status)
    					if err == nil {
    						// Not all controllers user generation, so we can ignore errors
    						x.SetObservedGeneration(cfg.Generation)
    					}
    					for c, i := range perControllerWork {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. security/pkg/pki/util/generate_csr.go

    			default:
    				curve = elliptic.P256()
    			}
    			priv, err = ecdsa.GenerateKey(curve, rand.Reader)
    			if err != nil {
    				return nil, nil, fmt.Errorf("EC key generation failed (%v)", err)
    			}
    		default:
    			return nil, nil, errors.New("csr cert generation fails due to unsupported EC signature algorithm")
    		}
    	} else {
    		if options.RSAKeySize < minimumRsaKeySize {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. pkg/apis/authentication/v1/conversion.go

    )
    
    // Convert_v1_UserInfo_To_authentication_UserInfo is defined outside the autogenerated file for use by other API packages
    // This is needed because it is referenced from other APIs, but is invisible at code-generation time because of the build tags.
    func Convert_v1_UserInfo_To_authentication_UserInfo(in *v1.UserInfo, out *authentication.UserInfo, s conversion.Scope) error {
    	return autoConvert_v1_UserInfo_To_authentication_UserInfo(in, out, s)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:42 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/wait-on-pipe.go

    // Copyright 2023 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.
    
    // Tests a goroutine sitting blocked in a syscall for
    // an entire generation. This is a regression test for
    // #65196.
    
    //go:build ignore
    
    package main
    
    import (
    	"log"
    	"os"
    	"runtime/trace"
    	"syscall"
    	"time"
    )
    
    func main() {
    	// Create a pipe to block on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/v1/conversion.go

    )
    
    // Convert_admissionregistration_RuleWithOperations_To_v1_RuleWithOperations is an autogenerated conversion function.
    // This is needed because it is referenced from other APIs, but is invisible at code-generation time because of the build tags.
    func Convert_admissionregistration_RuleWithOperations_To_v1_RuleWithOperations(in *admissionregistration.RuleWithOperations, out *v1.RuleWithOperations, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. pilot/pkg/xds/sds_test.go

    				}
    			}
    			if diff := cmp.Diff(got, tt.expect); diff != "" {
    				t.Fatal(diff)
    			}
    		})
    	}
    }
    
    // TestCaching ensures we don't have cross-proxy cache generation issues. This is split from TestGenerate
    // since it is order dependent.
    // Regression test for https://github.com/istio/istio/issues/33368
    func TestCaching(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #  A table with the mark can be treated as documents but no generating classes.
            #
            #; tableExceptList = list:{FOO_TABLE@gen ; prefix:FOO_@gen ; suffix:_FOO ; contain:_FOO_}
    
            # o tableTargetList: (NotRequired - Default list:{})
            #  If you want to include some tables in generating target expressly,
            #  you should specify the list of target table hints.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 7.3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            assertGeneratedWindowsStartScript()
    
            when:
            succeeds('installDist')
            then:
            runViaStartScript()
        }
    
        def "can generate starts script generation with custom user configuration"() {
            given:
            buildFile << """
            application {
                applicationName = 'myApp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top