Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,166 for maker (0.13 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

            expect:
            with(transformJar(LEGACY, testFile)) {
                assertContainsVersioned(AsmConstants.MAX_SUPPORTED_JAVA_VERSION + 1, "Foo.class")
            }
        }
    
        def "agent instrumentation puts no marker into non-multi-release jar"() {
            given:
            def testFile = jar(testDir.file("thing.jar")) {
                manifest {
                    // No Multi-Release attribute in the manifest.
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		errs = append(errs, errors.Wrap(err, "error uploading crisocket"))
    	}
    
    	// Create RBAC rules that makes the bootstrap tokens able to get nodes
    	if err := nodebootstraptoken.AllowBoostrapTokensToGetNodes(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the bootstrap tokens able to post CSRs
    	if err := nodebootstraptoken.AllowBootstrapTokensToPostCSRs(client); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    		// an unschedulable Pod schedulable.
    		// - Delete. An unschedulable Pod may fail due to violating an existing Pod's topology spread constraints,
    		// deleting an existing Pod may make it schedulable.
    		{Event: framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.All}, QueueingHintFn: pl.isSchedulableAfterPodChange},
    		// Node add|delete|update maybe lead an topology key changed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/alloc.go

    	// CASE C:
    	if upgraded {
    		toAllocate := make(map[api.IPFamily]string)
    		// if secondary ip was named, just get it. if not add a marker
    		if len(service.Spec.ClusterIPs) < 2 {
    			service.Spec.ClusterIPs = append(service.Spec.ClusterIPs, "" /* marker */)
    		}
    
    		toAllocate[service.Spec.IPFamilies[1]] = service.Spec.ClusterIPs[1]
    
    		// allocate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  5. pkg/kubelet/config/config.go

    		return false
    	}
    	return true
    }
    
    // checkAndUpdatePod updates existing, and:
    //   - if ref makes a meaningful change, returns needUpdate=true
    //   - if ref makes a meaningful change, and this change is graceful deletion, returns needGracefulDelete=true
    //   - if ref makes no meaningful change, but changes the pod status, returns needReconcile=true
    //   - else return all false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            """
    
            writeSourceFile()
    
            when:
            run("javadoc")
    
            then:
            file("build/javadoc/Foo.html").exists()
        }
    
        def "changing standard doclet options makes task out-of-date"() {
            buildFile << """
                task javadoc(type: Javadoc) {
                    destinationDir = file("build/javadoc")
                    source "src/main/java"
                    options {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/go/doc/doc.go

    }
    
    // A Note represents a marked comment starting with "MARKER(uid): note body".
    // Any note with a marker of 2 or more upper case [A-Z] letters and a uid of
    // at least one character is recognized. The ":" following the uid is optional.
    // Notes are collected in the Package.Notes map indexed by the notes marker.
    type Note struct {
    	Pos, End token.Pos // position range of the comment containing the marker
    	UID      string    // uid found with the marker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. src/internal/pkgbits/decoder.go

    	return e.Idx
    }
    
    // Sync decodes a sync marker from the element bitstream and asserts
    // that it matches the expected marker.
    //
    // If EnableSync is false, then Sync is a no-op.
    func (r *Decoder) Sync(mWant SyncMarker) {
    	if !r.common.sync {
    		return
    	}
    
    	pos, _ := r.Data.Seek(0, io.SeekCurrent)
    	mHave := SyncMarker(r.rawUvarint())
    	writerPCs := make([]int, r.rawUvarint())
    	for i := range writerPCs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  9. src/net/smtp/smtp_test.go

    	panic("unexpected call")
    }
    
    type faker struct {
    	io.ReadWriter
    }
    
    func (f faker) Close() error                     { return nil }
    func (f faker) LocalAddr() net.Addr              { return nil }
    func (f faker) RemoteAddr() net.Addr             { return nil }
    func (f faker) SetDeadline(time.Time) error      { return nil }
    func (f faker) SetReadDeadline(time.Time) error  { return nil }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. cmd/batch-expire.go

    	if err != nil {
    		// invalid worker size.
    		return err
    	}
    
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    
    	results := make(chan itemOrErr[ObjectInfo], workerSize)
    	if err := api.Walk(ctx, r.Bucket, r.Prefix, results, WalkOptions{
    		Marker:       lastObject,
    		LatestOnly:   false, // we need to visit all versions of the object to implement purge: retainVersions
    		VersionsSort: WalkVersionsSortDesc,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top