Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for RAW (0.04 sec)

  1. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.GradleBuild.getBuildName()> does not have raw return type assignable to org.gradle.api.provider.Property in (GradleBuild.java:0)
    Method <org.gradle.api.tasks.GradleBuild.getDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (GradleBuild.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.Project.getBuildDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (Project.java:0)
    Method <org.gradle.api.Project.getBuildFile()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  3. cni/pkg/log/uds.go

    	}
    	if err := json.Unmarshal(raw["level"], &msg.Level); err != nil {
    		log.Debugf("Failed to unmarshal CNI plugin log entry: %v", err)
    		return cniLog{}, false
    	}
    	if err := json.Unmarshal(raw["time"], &msg.Time); err != nil {
    		log.Debugf("Failed to unmarshal CNI plugin log entry: %v", err)
    		return cniLog{}, false
    	}
    	delete(raw, "msg")
    	delete(raw, "level")
    	delete(raw, "time")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. callbacks/query.go

    				if db.Statement.Schema == nil {
    					clauseSelect.Columns[idx] = clause.Column{Name: name, Raw: true}
    				} else if f := db.Statement.Schema.LookUpField(name); f != nil {
    					clauseSelect.Columns[idx] = clause.Column{Name: f.DBName}
    				} else {
    					clauseSelect.Columns[idx] = clause.Column{Name: name, Raw: true}
    				}
    			}
    		} else if db.Statement.Schema != nil && len(db.Statement.Omits) > 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/software/signing/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-publishing"))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/plugins/signing/**")
    }
    
    tasks {
        integTest {
            usesJavadocCodeSnippets = true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/reporting/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("BuildDashboard has specific support for JVM plugins (CodeNarc, JaCoCo)")
        }
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/reporting/internal/**")
    }
    
    val reportResources = tasks.register<Copy>("reportResources") {
        from(implementationResources)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/jvm/ear/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/plugins/ear/internal/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
        // Some cycles have been inherited from the time these classes were in :core
        excludePatterns.add("org/gradle/api/internal/file/collections/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core-api/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    integTest.usesJavadocCodeSnippets = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/testing-base/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(projects.distributionsCore)
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API (org.gradle.api.tasks.testing.AbstractTestTask)
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/internal/tasks/testing/**")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top