Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for newimage (0.2 sec)

  1. src/runtime/race/testdata/regression_test.go

    		ch <- 0
    	}()
    	m[0][0] = 1
    	<-ch
    }
    
    type Rect struct {
    	x, y int
    }
    
    type Image struct {
    	min, max Rect
    }
    
    //go:noinline
    func NewImage() Image {
    	return Image{}
    }
    
    func AddrOfTemp() {
    	_ = NewImage().min
    }
    
    type TypeID int
    
    func (t *TypeID) encodeType(x int) (tt TypeID, err error) {
    	switch x {
    	case 0:
    		return t.encodeType(x * x)
    	}
    	return 0, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 02:01:34 UTC 2015
    - 2.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/authz/kube.go

    		yamlText, err = addPullSecret(yamlText, secretName)
    		if err != nil {
    			return "", err
    		}
    	}
    
    	oldImage := "gcr.io/istio-testing/ext-authz:latest"
    	newImage := fmt.Sprintf("%s/ext-authz:%s", s.Hub, s.Tag)
    	yamlText = strings.ReplaceAll(yamlText, oldImage, newImage)
    
    	// Replace the image pull policy
    	oldPolicy := "IfNotPresent"
    	newPolicy := s.PullPolicy
    	yamlText = strings.ReplaceAll(yamlText, oldPolicy, newPolicy)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/main/webapp/images/noimage.png

    noimage.png...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Jun 02 14:28:59 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/strategy_test.go

    					Finalizers:      []string{"milo"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:  "container",
    							Image: "newimage",
    						},
    					},
    					EphemeralContainers: []api.EphemeralContainer{
    						{
    							EphemeralContainerCommon: api.EphemeralContainerCommon{
    								Name:  "container1",
    								Image: "image",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/util/proxyconfig.go

    	variant := ""
    	if e.meshConfig.GetDefaultConfig().GetImage().GetImageType() != "" {
    		variant = e.meshConfig.GetDefaultConfig().GetImage().GetImageType()
    	}
    	if e.root.GetImage().GetImageType() != "" {
    		variant = e.root.GetImage().GetImageType()
    	}
    	if v, ok := e.namespace[pod.Metadata.FullName.Namespace.String()]; ok {
    		if v.GetImage().GetImageType() != "" {
    			variant = v.GetImage().GetImageType()
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 21:07:52 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    			continue
    		}
    		newUsage = Add(newUsage, stats.Used)
    	}
    
    	// mask the observed usage to only the set of resources tracked by this quota
    	// merge our observed usage with the quota usage status
    	// if the new usage is different than the last usage, we will need to do an update
    	newUsage = Mask(newUsage, matchedResources)
    	return newUsage, utilerrors.NewAggregate(errors)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                        break;
                    case INVALID_SIZE:
                        logger.info("Unmatched thumbnail size: {} -> {}", thumbnailId, responseData.getUrl());
                        break;
                    case NO_IMAGE:
                        if (logger.isDebugEnabled()) {
                            logger.debug("No thumbnail: {} -> {}", thumbnailId, responseData.getUrl());
                        }
                        break;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. scripts/playwright/separate_openapi_schemas/image05.py

    
    def run(playwright: Playwright) -> None:
        browser = playwright.chromium.launch(headless=False)
        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_role("button", name="Item", exact=True).click()
        page.set_viewport_size({"width": 960, "height": 700})
        page.screenshot(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 829 bytes
    - Viewed (0)
  9. scripts/playwright/separate_openapi_schemas/image02.py

    
    def run(playwright: Playwright) -> None:
        browser = playwright.chromium.launch(headless=False)
        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_text("GET/items/Read Items").click()
        page.get_by_role("button", name="Try it out").click()
        page.get_by_role("button", name="Execute").click()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 873 bytes
    - Viewed (0)
  10. scripts/playwright/separate_openapi_schemas/image03.py

    
    def run(playwright: Playwright) -> None:
        browser = playwright.chromium.launch(headless=False)
        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_text("GET/items/Read Items").click()
        page.get_by_role("tab", name="Schema").click()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 892 bytes
    - Viewed (0)
Back to top