Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,136 for deflated (0.27 sec)

  1. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    			}
    		}
    	}
    
    	// If the deleted pod doesn't use any host ports, it doesn't make the target pod schedulable.
    	if len(usedPorts) == 0 {
    		return framework.QueueSkip, nil
    	}
    
    	// Construct a fake NodeInfo that only has the deleted Pod.
    	// If we can schedule `pod` to this fake node, it means that `pod` and the deleted pod don't have any common port(s).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/taint_eviction_test.go

    							continue
    						}
    						if deleteAction.GetResource().Resource != "pods" {
    							continue
    						}
    						if podName == deleteAction.GetName() {
    							deleted = true
    						}
    					}
    					if !deleted {
    						t.Errorf("Failed to deleted pod %v after %v", podName, delay)
    					}
    				}
    				for _, action := range fakeClientset.Actions() {
    					deleteAction, ok := action.(clienttesting.DeleteActionImpl)
    					if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue21317.go

    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		log.Fatalf("expected cmd/compile to fail")
    	}
    	wantErrs := []string{
    		"7:9: declared and not used: n",
    		"7:12: declared and not used: err",
    	}
    	outStr := string(out)
    	for _, want := range wantErrs {
    		if !strings.Contains(outStr, want) {
    			log.Fatalf("failed to match %q\noutput: %q", want, outStr)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTestLauncherCrossVersionSpec.groovy

        }
    
        def "fails with meaningful error when no tests declared from included build"() {
            when:
            launchTests { TestLauncher launcher ->
                launcher.withTaskAndTestClasses(':included-build:test', [])
            }
    
            then:
            def e = thrown(TestExecutionException)
            e.message == 'No test for task :included-build:test declared for execution.'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules.ir.txt

          annotations:
            MyComposable
          BLOCK_BODY
            CALL 'public final fun Foo (text: @[MyComposable] kotlin.Function0<kotlin.Unit>): kotlin.Unit declared in p3' type=kotlin.Unit origin=null
              text: FUN_EXPR type=kotlin.Function0<kotlin.Unit> origin=LAMBDA
                FUN LOCAL_FUNCTION_FOR_LAMBDA name:<anonymous> visibility:local modality:FINAL <> () returnType:kotlin.Unit
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 886 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

            then:
            failure.assertHasCause("Mutation of repositories declared in settings is only allowed during settings evaluation")
        }
    
        /**
         * the `buildSrc` directory behaves like an included build. As such, it may have its own settings,
         * so repositories declared in the main build shouldn't be visible to buildSrc.
         */
        def "repositories declared in settings shouldn't be used to resolve dependencies in buildSrc"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/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.pos, 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)
  8. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        // TODO I would like to get rid of this. jvz.
        public Model getModel() {
            return model;
        }
    
        /**
         * Returns the project corresponding to a declared parent.
         *
         * @return the parent, or null if no parent is declared or there was an error building it
         */
        public MavenProject getParent() {
            return parent;
        }
    
        public void setParent(MavenProject parent) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	// an alternative strategy; at most one may be applied.
    	SuggestedFixes []SuggestedFix
    
    	// Related contains optional secondary positions and messages
    	// related to the primary diagnostic.
    	Related []RelatedInformation
    }
    
    // RelatedInformation contains information related to a diagnostic.
    // For example, a diagnostic that flags duplicated declarations of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    		},
    		{
    			description: "containers for deleted pods should be removed",
    			containers: []containerTemplate{
    				makeGCContainer("foo", "bar", 1, 1, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo", "bar", 0, 0, runtimeapi.ContainerState_CONTAINER_EXITED),
    				// deleted pods still respect MinAge.
    				makeGCContainer("deleted", "bar1", 2, time.Now().UnixNano(), runtimeapi.ContainerState_CONTAINER_EXITED),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top