Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 196 for derp (0.06 sec)

  1. migrator/migrator.go

    		if _, ok := parsedSchemas[dep.Statement.Schema]; ok {
    			return
    		}
    		parsedSchemas[dep.Statement.Schema] = true
    
    		if !m.DB.IgnoreRelationshipsWhenMigrating {
    			for _, rel := range dep.Schema.Relationships.Relations {
    				if rel.Field.IgnoreMigration {
    					continue
    				}
    				if c := rel.ParseConstraint(); c != nil && c.Schema == dep.Statement.Schema && c.Schema != c.ReferenceSchema {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  2. OWNERS_ALIASES

      sig-windows-api-reviewers:
        - jayunit100
        - jsturtevant
        - marosset
      # Note: dep-approvers has approval on root files (including OWNERS_ALIASES) until https://github.com/kubernetes/test-infra/pull/21398 is resolved.
      # People with approve rights via this alias should defer updates of root files other than go.mod/go.sum to dep-approvers.
      dep-approvers:
        - BenTheElder
        - cblecker
        - dims
        - thockin
        - sttts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r34/ToolingApiIdeaModelCrossVersionSpec.groovy

            hasDependency(module, "f", "TEST")
        }
    
        def hasDependency(IdeaModule module, String name, String scope) {
            module.dependencies.find { IdeaModuleDependency dep ->
                dep.targetModuleName == name && dep.scope.scope == scope
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/projects/CheckProject.kt

            )
            text(
                "reverse.dep.*.additional.gradle.parameters",
                "",
                display = ParameterDisplay.NORMAL,
                allowEmpty = true,
                description = "The extra gradle parameters you want to pass to all dependencies of this build, e.g. `-PrerunAllTests` or `--no-build-cache`"
            )
            text(
                "reverse.dep.*.skip.build",
                "",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 05:52:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. cni/pkg/iptables/iptables.go

    	EnableIPv6    bool `json:"ENABLE_INBOUND_IPV6"`
    	RedirectDNS   bool `json:"REDIRECT_DNS"`
    }
    
    type IptablesConfigurator struct {
    	ext    dep.Dependencies
    	nlDeps NetlinkDependencies
    	cfg    *Config
    	iptV   dep.IptablesVersion
    	ipt6V  dep.IptablesVersion
    }
    
    func ipbuildConfig(c *Config) *iptablesconfig.Config {
    	return &iptablesconfig.Config{
    		RestoreFormat: c.RestoreFormat,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                            def dep = entries.find { it.path.endsWith('child1') }
                            def sourceJar = this.project(":child1").tasks.getByName("sourceJar")
                            def javadocJar = this.project(":child1").tasks.getByName("javadocJar")
                            dep.buildDependencies(sourceJar, javadocJar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingSnapshotFromPluginRepositorySpec.groovy

            buildFile << """
                buildscript {
                    configurations.classpath {
                        withDependencies { dependencies ->
                           dependencies.configureEach { dep ->
                                dep.attributes {
                                    attribute(Attribute.of("org.gradle.status", String.class), "integration")
                                }
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/cmd/root.go

    type IptablesError struct {
    	Error    error
    	ExitCode int
    }
    
    func ProgramIptables(cfg *config.Config) error {
    	var ext dep.Dependencies
    	if cfg.DryRun {
    		log.Info("running iptables in dry-run mode, no rule changes will be made")
    		ext = &dep.DependenciesStub{}
    	} else {
    		ext = &dep.RealDependencies{
    			CNIMode:          cfg.CNIMode,
    			NetworkNamespace: cfg.NetworkNamespace,
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. pkg/config/mesh/mesh_test.go

    	}
    	if len(got.DefaultProviders.GetMetrics()) != 0 {
    		t.Errorf("default providers deep merge failed, got %v", got.DefaultProviders.GetMetrics())
    	}
    	if !cmp.Equal(getExtensionProviders(got.ExtensionProviders), []string{"prometheus", "stackdriver", "envoy", "sd"}, protocmp.Transform()) {
    		t.Errorf("extension providers deep merge failed, got %v", getExtensionProviders(got.ExtensionProviders))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. cmd/erasure-healing-common_test.go

    					// appears in outDatedDisks.
    					tamperedIndex = index
    					dErr := erasureDisks[index].Delete(context.Background(), bucket, pathJoin(object, fi.DataDir, "part.1"), DeleteOptions{
    						Recursive: false,
    						Immediate: false,
    					})
    					if dErr != nil {
    						t.Fatalf("Failed to delete %s - %v", filepath.Join(object, "part.1"), dErr)
    					}
    					break
    				}
    			case corruptPart:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top