Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,207 for stay (0.08 sec)

  1. test/opt_branchlikely.go

    		for i := 0; i < x; i++ { // ERROR "Branch prediction rule stay in loop"
    			if x == 4 { // ERROR "Branch prediction rule stay in loop"
    				return a
    			}
    			for j := 0; j < y; j++ { // ERROR "Branch prediction rule stay in loop"
    				for k := 0; k < z; k++ { // ERROR "Branch prediction rule stay in loop"
    					a -= j * i
    				}
    				a += j
    			}
    		}
    	}
    	return a
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

    	}
    	if _, found, _ := unstructured.NestedFieldNoCopy(foo.Object, "alpha"); !found {
    		t.Errorf("Expected specified 'alpha' field to stay, but it was pruned")
    	}
    	if _, found, _ := unstructured.NestedFieldNoCopy(foo.Object, "beta"); !found {
    		t.Errorf("Expected specified 'beta' field to stay, but it was pruned")
    	}
    	if _, found, _ := unstructured.NestedFieldNoCopy(foo.Object, "metadata", "unspecified"); found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaWorkspaceIntegrationTest.groovy

    idea {
        workspace {
            iws {
                withXml {
                    it.asNode().appendNode('stay', 'happy')
                }
            }
        }
    }
    '''
    
            //then
            String content = getFile([:], "root.iws").text
            assert content.contains("<foo>bar")
            assert content.contains("<stay>happy")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl

    Forums Community Plugins Training News Newsletter Blog Twitter Develocity github Docs User Manual DSL Reference Release Notes Javadoc News Blog Newsletter Twitter Products Build Scan™ Build Cache Develocity Docs Get Help Forums GitHub Training Services Stay UP-TO-DATE on new features and news By entering your email, you agree to our Terms and Privacy Policy, including receipt of emails. You can unsubscribe at any time. Subscribe Version section-anchor #...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 16:51:07 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/options/deprecated.go

    type DeprecatedOptions struct {
    	componentbaseconfig.DebuggingConfiguration
    	componentbaseconfig.ClientConnectionConfiguration
    	// PodMaxInUnschedulablePodsDuration is the maximum time a pod can stay in
    	// unschedulablePods. If a pod stays in unschedulablePods for longer than this
    	// value, the pod will be moved from unschedulablePods to backoffQ or activeQ.
    	// If this value is empty, the default value (5min) will be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 13:24:38 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/tighten.go

    		for _, v := range b.Values {
    			if v.Op.isLoweredGetClosurePtr() {
    				// Must stay in the entry block.
    				continue
    			}
    			switch v.Op {
    			case OpPhi, OpArg, OpArgIntReg, OpArgFloatReg, OpSelect0, OpSelect1, OpSelectN:
    				// Phis need to stay in their block.
    				// Arg must stay in the entry block.
    				// Tuple selectors must stay with the tuple generator.
    				// SelectN is typically, ultimately, a register.
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

    labels: [ "a:feature", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please follow the instructions below.
            We receive dozens of issues every week, so to stay productive, we will close issues that don't provide enough information.
    
            Please open Android-related issues on [the Android Issue Tracker](https://source.android.com/source/report-bugs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 11:10:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1beta1/register.go

    	return SchemeGroupVersion.WithResource(resource).GroupResource()
    }
    
    var (
    	// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
    	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
    	SchemeBuilder      = runtime.NewSchemeBuilder(addKnownTypes)
    	localSchemeBuilder = &SchemeBuilder
    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/coordination/v1beta1/register.go

    	return SchemeGroupVersion.WithResource(resource).GroupResource()
    }
    
    var (
    	// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
    	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
    	SchemeBuilder      = runtime.NewSchemeBuilder(addKnownTypes)
    	localSchemeBuilder = &SchemeBuilder
    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 27 11:30:13 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/events/v1beta1/register.go

    	return SchemeGroupVersion.WithResource(resource).GroupResource()
    }
    
    var (
    	// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
    	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
    	SchemeBuilder      = runtime.NewSchemeBuilder(addKnownTypes)
    	localSchemeBuilder = &SchemeBuilder
    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 22 18:40:09 UTC 2017
    - 1.7K bytes
    - Viewed (0)
Back to top