Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for doCreate (0.13 sec)

  1. pkg/controller/endpointslicemirroring/reconciler_helpers.go

    )
    
    // slicesByAction includes lists of slices to create, update, or delete.
    type slicesByAction struct {
    	toCreate, toUpdate, toDelete []*discovery.EndpointSlice
    }
    
    // append appends slices from another slicesByAction struct.
    func (s *slicesByAction) append(slices slicesByAction) {
    	s.toCreate = append(s.toCreate, slices.toCreate...)
    	s.toUpdate = append(s.toUpdate, slices.toUpdate...)
    	s.toDelete = append(s.toDelete, slices.toDelete...)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-annotations-stress.test

    UserLog dt=42 task=10 key_string=27 value_string=52 stack=57
    UserRegionBegin dt=12 task=10 name_string=29 stack=58
    GoCreate dt=36 new_g=35 new_stack=17 stack=59
    GoCreate dt=11 new_g=36 new_stack=17 stack=59
    GoCreate dt=18 new_g=37 new_stack=17 stack=59
    GoCreate dt=10 new_g=38 new_stack=17 stack=59
    GoCreate dt=6 new_g=39 new_stack=17 stack=59
    GoCreate dt=8 new_g=40 new_stack=17 stack=59
    UserRegionEnd dt=7 task=10 name_string=29 stack=60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Regression test for an issue found in development.
    //
    // GoCreate events can happen on bare Ps in a variety of situations and
    // and earlier version of the parser assumed this wasn't possible. At
    // the time of writing, one such example is goroutines created by expiring
    // timers.
    
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-fail-first-gen-first.test

    -- expect --
    FAILURE "expected a proc but didn't have one"
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=0 time=0 size=5
    GoCreate dt=0 new_g=1 new_stack=0 stack=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 256 bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            }
    
            List<File> toCreate = new LinkedList<File>();
            File parent = dir.getParentFile();
            while (!parent.exists()) {
                toCreate.add(parent);
                parent = parent.getParentFile();
            }
    
            Collections.reverse(toCreate);
            for (File parentDirToCreate : toCreate) {
                if (parentDirToCreate.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            }
    
            List<File> toCreate = new LinkedList<File>();
            File parent = dir.getParentFile();
            while (!parent.exists()) {
                toCreate.add(parent);
                parent = parent.getParentFile();
            }
    
            Collections.reverse(toCreate);
            for (File parentDirToCreate : toCreate) {
                if (parentDirToCreate.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. pkg/volume/util/subpath/subpath_windows.go

    		}
    		return &os.PathError{Op: "mkdir", Path: pathname, Err: syscall.ENOTDIR}
    	}
    
    	// Find all existing directories
    	existingPath, toCreate, err := findExistingPrefix(base, pathname)
    	if err != nil {
    		return fmt.Errorf("error opening directory %s: %s", pathname, err)
    	}
    	if len(toCreate) == 0 {
    		return nil
    	}
    
    	// Ensure the existing directory is inside allowed base
    	fullExistingPath, err := evalSymlink(existingPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/tests/go122-go-create-without-running-g.test

    -- expect --
    SUCCESS
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=17
    ProcStatus dt=1 p=0 pstatus=1
    GoCreate dt=1 new_g=5 new_stack=0 stack=0
    GoStart dt=1 g=5 g_seq=1
    GoStop dt=1 reason_string=1 stack=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=12
    Strings
    String id=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 446 bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-annotations.test

    ProcStatus dt=1 p=47 pstatus=2
    ProcsChange dt=1 procs_value=48 stack=3
    STWEnd dt=184
    GoCreate dt=252 new_g=6 new_stack=4 stack=5
    GoCreate dt=78 new_g=7 new_stack=6 stack=7
    GoCreate dt=73 new_g=8 new_stack=8 stack=9
    UserTaskBegin dt=71 task=1 parent_task=0 name_string=22 stack=10
    UserRegionBegin dt=535 task=1 name_string=23 stack=11
    HeapAlloc dt=26 heapalloc_value=1884160
    GoCreate dt=8 new_g=9 new_stack=12 stack=13
    GoBlock dt=249 reason_string=10 stack=14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/reconciler.go

    		slices.append(pmSlices)
    		totals.add(pmTotals)
    
    		epMetrics.Set(endpointsliceutil.PortMapKey(portKey), metrics.EfficiencyInfo{
    			Endpoints: numEndpoints,
    			Slices:    len(existingSlicesByKey[portKey]) + len(pmSlices.toCreate) - len(pmSlices.toDelete),
    		})
    	}
    
    	// If there are unique sets of ports that are no longer desired, mark
    	// the corresponding endpoint slices for deletion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top