Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for oH (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. .gitignore

    # ---------
    /incoming-distributions
    /intTestHomeDir
    
    # Logs
    # ----
    /*.log
    
    # Thread dumps for troubleshooting
    *.threaddump
    # ps output for cleaning up leaking Java processes
    *.psoutput
    
    # oh-my-zsh gradle plugin
    .gradletasknamecache
    
    # Added GE support maven support to the maven build in .teamcity, per the GE docs, this dir is NOT to be committed
    .teamcity/.mvn/.gradle-enterprise/
    /discoclient.properties
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/integTest/resources/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest/loggingConfig/src/main/java/com/example/LumberJack.java

        private static final Logger ELM = Logger.getLogger("elm");
        private static final Logger ELMER = Logger.getLogger("elm.er");
    
        public void sing() {
            ROOT.fine("Oh, I'm a lumberjack, and I'm okay.");
            OAK.fine("I sleep all night and I work all day.");
            ELM.fine("He's a lumberjack, and He's okay.");
            ELMER.fine("He sleeps all night and he works all day.");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/serialize/ExceptionPlaceholderIntegrationTest.groovy

                        errors.add(new AssertionError("error 1"));
                        errors.add(new RuntimeException("error 2"));
                        throw new MultipleFailuresError("oh noes", errors);
                    }
                }
            '''
    
            when:
            fails "test"
    
            then:
            def result = new HtmlTestExecutionResult(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                }
            """
    
            when:
            fails 'checkDeps', '-PbreakBuild=true'
    
            then:
            failure.assertHasCause("Failed to list versions for org:testA.")
            failure.assertHasCause("oh noes!")
    
            when:
            repositoryInteractions {
                'org:testA' {
                    expectVersionListing()
                }
                'org:testA:3' {
                    expectResolve()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top