Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for oH (0.06 sec)

  1. src/cmd/go/testdata/script/build_cwd_newline.txt

    stderr 'package command-line-arguments: invalid package directory .*uh-oh'
    
    ! go run .
    stderr 'package example: invalid package directory .*uh-oh'
    
    [cgo] ! go run main.go
    [!cgo] ! go run main_nocgo.go
    stderr 'package command-line-arguments: invalid package directory .*uh-oh'
    
    ! go test .
    stderr 'package example: invalid package directory .*uh-oh'
    
    [cgo] ! go test -v main.go main_test.go
    [!cgo] ! go test -v main_nocgo.go main_test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    	var oh pe.OptionalHeader32
    	var oh64 pe.OptionalHeader64
    
    	if pe64 != 0 {
    		oh64.Magic = 0x20b // PE32+
    	} else {
    		oh.Magic = 0x10b // PE32
    		oh.BaseOfData = f.dataSect.virtualAddress
    	}
    
    	// Fill out both oh64 and oh. We only use one. Oh well.
    	oh64.MajorLinkerVersion = 3
    	oh.MajorLinkerVersion = 3
    	oh64.MinorLinkerVersion = 0
    	oh.MinorLinkerVersion = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/prune.go

    			obj := object.NewK8sObject(&o, nil, nil)
    			oh := obj.Hash()
    
    			// kube client does not differentiate API version when listing, added this check to deduplicate.
    			if deletedObjects[oh] {
    				continue
    			}
    			if err := h.deleteResource(obj, componentName, oh); err != nil {
    				errs = append(errs, err)
    			}
    			deletedObjects[oh] = true
    		}
    	}
    
    	return errs.ToError()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/apply.go

    	for _, obj := range allObjects {
    		oh := obj.Hash()
    		allObjectsMap[oh] = true
    		if co, ok := objectCache.Cache[oh]; ok && obj.Equal(co) {
    			// Object is in the cache and unchanged.
    			metrics.AddResource(obj.FullName(), obj.GroupVersionKind().GroupKind())
    			result.deployed++
    			continue
    		}
    		changedObjects = append(changedObjects, obj)
    		changedObjectKeys = append(changedObjectKeys, oh)
    	}
    
    	var plog *progress.ManifestLog
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/templates/404.html

    {{ define "title" }}Page Not Found{{ end }}
    {{ define "content" }}
    <div class="notfound">
        <div class="icon">
            <img alt="Warning" title="Uh-oh" src="/img/exclamation-mark.svg" />
        </div>
    
        <div class="error">
            We're sorry, the page you requested cannot be found
        </div>
    
        <div class="explanation">
            The URL may be misspelled
        </div>
    </div>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 389 bytes
    - Viewed (0)
  6. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/unexpected-alias-key-3.toml

    [libraries.guava]
    group = "com.google.guava"
    name = "guava"
    invalid = '18'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 106 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedAsProjectPluginIntegrationTest.groovy

            when:
            buildScript '''
                class MyPlugin {
                    static class Rules extends RuleSource {
                        @Model
                        String string() { throw new RuntimeException("oh no!") }
                    }
                }
    
                apply type: MyPlugin
    
                model {
                    tasks {
                        $.string
                    }
                }
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. src/debug/pe/file_test.go

    	}
    	defer f.Close()
    
    	switch oh := f.OptionalHeader.(type) {
    	case *OptionalHeader32:
    		if oh.Subsystem != IMAGE_SUBSYSTEM_WINDOWS_GUI {
    			t.Errorf("unexpected Subsystem value: have %d, but want %d", oh.Subsystem, IMAGE_SUBSYSTEM_WINDOWS_GUI)
    		}
    	case *OptionalHeader64:
    		if oh.Subsystem != IMAGE_SUBSYSTEM_WINDOWS_GUI {
    			t.Errorf("unexpected Subsystem value: have %d, but want %d", oh.Subsystem, IMAGE_SUBSYSTEM_WINDOWS_GUI)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  9. src/cmd/internal/objfile/pe.go

    }
    
    func (f *peFile) loadAddress() (uint64, error) {
    	return f.imageBase()
    }
    
    func (f *peFile) imageBase() (uint64, error) {
    	switch oh := f.pe.OptionalHeader.(type) {
    	case *pe.OptionalHeader32:
    		return uint64(oh.ImageBase), nil
    	case *pe.OptionalHeader64:
    		return oh.ImageBase, nil
    	default:
    		return 0, fmt.Errorf("pe file format not recognized")
    	}
    }
    
    func (f *peFile) dwarf() (*dwarf.Data, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. operator/pkg/patch/patch.go

    func overlayMatches(overlay *v1alpha1.K8SObjectOverlay, obj *object.K8sObject, defaultNamespace string) bool {
    	oh := obj.Hash()
    	if oh == object.Hash(overlay.Kind, defaultNamespace, overlay.Name) ||
    		oh == object.Hash(overlay.Kind, "", overlay.Name) {
    		return true
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top