Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for uncommitted (0.38 sec)

  1. src/runtime/mpagealloc.go

    	// Each slice's len reflects the allocator's maximum known
    	// mapped heap address for that level.
    	//
    	// The backing store of each summary level is reserved in init
    	// and may or may not be committed in grow (small address spaces
    	// may commit all the memory in init).
    	//
    	// The purpose of keeping len <= cap is to enforce bounds checks
    	// on the top end of the slice so that instead of an unknown
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  2. LICENSE

    contribution and copyright details. If a contributor wants to further mark
    their specific copyright on a particular contribution, they should indicate
    their copyright solely in the commit message of the change when it is
    committed.
    
    LICENSE
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 17:31:56 UTC 2021
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	crdClient client.CustomResourceDefinitionsGetter
    
    	crdLister listers.CustomResourceDefinitionLister
    	crdSynced cache.InformerSynced
    	// crdMutationCache backs our lister and keeps track of committed updates to avoid racy
    	// write/lookup cycles.  It's got 100 slots by default, so it unlikely to overrun
    	// TODO to revisit this if naming conflicts are found to occur in the wild
    	crdMutationCache cache.MutationCache
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/branchelim.go

    		}
    	}
    	if !hasphis {
    		return false
    	}
    
    	// Don't generate CondSelects if branch is cheaper.
    	if !shouldElimIfElse(no, yes, post, f.Config.arch) {
    		return false
    	}
    
    	// now we're committed: rewrite each Phi as a CondSelect
    	swap := post.Preds[0].Block() != b.Succs[0].Block()
    	for _, v := range post.Values {
    		if v.Op != OpPhi {
    			continue
    		}
    		v.Op = OpCondSelect
    		if swap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    [source,text]
    ----
    $ .\gradlew.bat build
    ----
    
    The first time you run the wrapper, it downloads and caches the Gradle binaries if they are not already installed on your machine.
    
    The Gradle Wrapper is designed to be committed to source control so that anyone can build the project without having to first install and configure a specific version of Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    Building Gradle projects doesn't stop with the developer's machine.
    https://en.wikipedia.org/wiki/Continuous_integration[Continuous Integration] (CI) has been a long-established practice for running a build for every single change committed to version control to tighten the feedback loop.
    
    In this guide, we'll discuss how to configure link:https://github.com/features/actions/[GitHub Actions] for a Gradle project hosted on GitHub.
    
    == Introduction
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. pilot/test/xds/fake.go

    	// Send an update. This ensures that even if there are no configs provided, the push context is
    	// initialized.
    	s.ConfigUpdate(&model.PushRequest{Full: true})
    
    	// Wait until initial updates are committed
    	c := s.InboundUpdates.Load()
    	retry.UntilOrFail(t, func() bool {
    		return s.CommittedUpdates.Load() >= c
    	}, retry.Delay(time.Millisecond))
    
    	// Mark ourselves ready
    	s.CachesSynced()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/shortcircuit.go

    		return false
    	}
    
    	var fixPhi func(*Value, int)
    	if nOtherPhi > 0 {
    		fixPhi = shortcircuitPhiPlan(b, ctl, cidx, ti)
    		if fixPhi == nil {
    			return false
    		}
    	}
    
    	// We're committed. Update CFG and Phis.
    	// If you modify this section, update shortcircuitPhiPlan corresponding.
    
    	// Remove b's incoming edge from p.
    	b.removePred(cidx)
    	b.removePhiArg(ctl, cidx)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  9. cluster/gce/windows/smoke-test.sh

      local service_address="$service_ip:$service_port"
    
      echo "curl-ing $service address from Windows pod: $service_address"
      # curl-ing the metrics-server service results in a ServerProtocolViolation
      # ("The server committed a protocol violation. Section=ResponseStatusLine")
      # exception. Since we don't care about what the metrics-server actually gives
      # back to us, just that we can reach it, we check that we get the expected
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. src/time/zoneinfo_read.go

    		}
    	}
    
    	if len(tx) == 0 {
    		// Build fake transition to cover all time.
    		// This happens in fixed locations like "Etc/GMT0".
    		tx = append(tx, zoneTrans{when: alpha, index: 0})
    	}
    
    	// Committed to succeed.
    	l := &Location{zone: zones, tx: tx, name: name, extend: extend}
    
    	// Fill in the cache with information about right now,
    	// since that will be the most common lookup.
    	sec, _, _ := now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top