Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,370 for happens (0.2 sec)

  1. pkg/controller/deployment/deployment_controller_test.go

    		p1.Name, p2.Name = p1.Name+fmt.Sprintf("-%d", i), p2.Name+fmt.Sprintf("-%d", i)
    		pods = append(pods, p1, p2)
    		objects = append(objects, p1, p2)
    	}
    
    	f.dLister = append(f.dLister, d)
    	f.rsLister = append(f.rsLister, rs1, rs2)
    	f.podLister = append(f.podLister, pods...)
    	f.objects = append(f.objects, d, rs1, rs2)
    	f.objects = append(f.objects, objects...)
    
    	// Start the fixture.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

                // See above for why this check happens
                if (targetMetadata.hasProperty(null, propertyName) == null) {
                    throw MissingPropertyException(propertyName)
                }
                scriptReferenced()
            }
    
            override fun invokeMethod(name: String, args: Any): Any {
                // See above for why this check happens
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            }
        }
    
        def "problem is received when a single-file compilation failure happens"() {
            given:
            possibleFileLocations.put(writeJavaCausingTwoCompilationErrors("Foo").absolutePath, 2)
    
            when:
            fails("compileJava")
    
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/stream/EncodedStream.java

    /**
     * Provides Input/OutputStream implementations that are able to encode/decode using a simple algorithm (byte<->2 digit hex string(2 bytes)).
     * Useful when streams are interpreted a text streams as it happens on IBM java for standard input.
     */
    public abstract class EncodedStream {
        private final static char[] HEX_DIGIT = new char[] {
            '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
        };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-syscall-steal-proc-ambiguous.go

    // Tests syscall P stealing.
    //
    // Specifically, it tests a scenerio wherein, without a
    // P sequence number of GoSyscallBegin, the syscall that
    // a ProcSteal applies to is ambiguous. This only happens in
    // practice when the events aren't already properly ordered
    // by timestamp, since the ProcSteal won't be seen until after
    // the correct GoSyscallBegin appears on the frontier.
    
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // The core of the issue is that if generation counters
    // aren't considered as part of sequence numbers, then
    // it's possible to accidentally advance without a
    // GoStatus event.
    //
    // The situation is one in which it just so happens that
    // an event on the frontier for a following generation
    // has a sequence number exactly one higher than the last
    // sequence number for e.g. a goroutine in the previous
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DefaultClassFileTransformer.java

                return instrumentingLoader.instrumentClass(className, protectionDomain, classfileBuffer);
            } catch (Throwable th) {
                // Throwing exception from the ClassFileTransformer has no effect - if it happens, the class is loaded unchanged silently.
                // This is not something we want, so we notify the class loader about this.
                instrumentingLoader.transformFailed(className, th);
                return null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

    import org.gradle.internal.resolve.result.BuildableArtifactSetResolveResult;
    
    /**
     * State for a component instance that is used to perform artifact resolution.
     *
     * <p>Resolution happens in multiple steps. The first is to calculate the dependency graph, and the subsequent steps select artifacts. Artifact resolution is broken down into 3 main steps:</p>
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/BuildActionResult.java

    import javax.annotation.Nullable;
    
    /**
     * Encapsulates either a result object, or a failure as an exception or a serialized exception.
     *
     * <p>Exceptions should always be serialized, but currently are not when the failure happens outside the context of a build invocation because the serialization infrastructure is currently tied to some build scoped services.</p>
     */
    public class BuildActionResult {
        private final SerializedPayload result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    	//     substring check is not good enough. The value is a
    	//     rightmost-wins list of options. But more importantly:
    	// (b) it is impossible to detect changes to the effective
    	//     setting caused by os.Setenv("GODEBUG"), as happens in
    	//     many tests. Therefore any attempt to cache the result
    	//     is just incorrect.
    	fset := token.NewFileSet()
    	f, _ := parser.ParseFile(fset, "a.go", "package p; type A = int", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top