Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,435 for deflated (0.74 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            e.message == 'Service ListenerManager with implementation DefaultListenerManager implements AnnotatedServiceLifecycleHandler but is not declared as a service of this type. This service is declared as having type ListenerManager.'
        }
    
        def "fails when listener manager factory is not declared as annotation handler"() {
            given:
            def services = new DefaultServiceRegistry()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCleanupProgressMonitor.java

            skipped += amount;
            updateProgress();
        }
    
        public long getDeleted() {
            return deleted;
        }
    
        private void updateProgress() {
            buildOperationContext.progress(mandatoryNumber(deleted, " entry", " entries") + " deleted"
                + optionalNumber(", ", skipped, " skipped"));
        }
    
        private String mandatoryNumber(long value, String singular, String plural) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. test/cannotassign.go

    	const n int = 1
    	const cs string = "hello"
    	n = 2        // ERROR "cannot assign to .* (\(declared const\))?"
    	cs = "hi"    // ERROR "cannot assign to .* (\(declared const\))?"
    	true = false // ERROR "cannot assign to .* (\(declared const\))?"
    
    	var m map[int]struct{ n int }
    	m[0].n = 7 // ERROR "cannot assign to struct field .* in map$"
    
    	1 = 7         // ERROR "cannot assign to 1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 1K bytes
    - Viewed (0)
  4. test/alias2.go

    	A4 = Value
    	A5 = Value
    
    	N0 A0
    )
    
    // Methods can be declared on the original named type and the alias.
    func (T0) m1()  {} // GCCGO_ERROR "previous"
    func (*T0) m1() {} // ERROR "method redeclared: T0\.m1|T0\.m1 already declared|redefinition of .m1."
    func (A0) m1()  {} // ERROR "T0\.m1 already declared|redefinition of .m1."
    func (A0) m1()  {} // ERROR "T0\.m1 already declared|redefinition of .m1."
    func (A0) m2()  {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/annotationWithVararg.ir.txt

          BLOCK_BODY
            RETURN type=kotlin.Nothing from='public final fun foo (): kotlin.Int declared in <root>'
              CONST Int type=kotlin.Int value=10
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Unit
          BLOCK_BODY
            VAR name:x type:kotlin.Int [val]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 29 06:44:05 UTC 2024
    - 577 bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue51437.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type T struct{}
    
    func (T) m() []int { return nil }
    
    func f(x T) {
    	for _, x := range func() []int {
    		return x.m() // x declared in parameter list of f
    	}() {
    		_ = x // x declared by range clause
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 373 bytes
    - Viewed (0)
  7. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

                    VolumeSnapshot is deleted. Supported values are "Retain" and "Delete".
                    "Retain" means that the VolumeSnapshotContent and its physical snapshot
                    on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent
                    and its physical snapshot on underlying storage system are deleted.
                    Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

                "        <p>This happens when a dependency was compromised or that downloaded artifact isn't the one that you expected.</p>",
                "        <p>It's important that you <b>carefully review this problem</b>.</p>");
            registerModal("deleted-artifact", "Deleted artifact",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. src/go/types/labels.go

    		} else {
    			msg = "label %s not declared"
    			code = UndeclaredLabel
    		}
    		check.errorf(jmp.Label, code, msg, name)
    	}
    
    	// spec: "It is illegal to define a label that is never used."
    	for name, obj := range all.elems {
    		obj = resolve(name, obj)
    		if lbl := obj.(*Label); !lbl.used {
    			check.softErrorf(lbl, UnusedLabel, "label %s declared and not used", lbl.name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/local.ir.txt

              DELEGATING_CONSTRUCTOR_CALL 'public constructor <init> () [primary] declared in kotlin.Any'
          FUN name:run visibility:public modality:FINAL <> (p0:kotlin.Int) returnType:kotlin.Int
            VALUE_PARAMETER name:p0 index:0 type:kotlin.Int
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 755 bytes
    - Viewed (0)
Back to top