Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for recur1 (0.12 sec)

  1. cmd/os_unix.go

    	}
    
    	if j > 1 {
    		// Create parent.
    		if err := osMkdirAll(dirPath[:j-1], perm, baseDir); err != nil {
    			return err
    		}
    	}
    
    	// Parent now exists; invoke Mkdir and use its result.
    	if err := Mkdir(dirPath, perm); err != nil {
    		if osIsExist(err) {
    			return nil
    		}
    		return err
    	}
    
    	return nil
    }
    
    // The buffer must be at least a block long.
    // refer https://github.com/golang/go/issues/24015
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                Object obj = cache.get(session, cacheKey);
                if (obj instanceof Record) {
                    Record record = (Record) obj;
                    result.setVersion(record.version);
                    result.setRepository(
                            getRepository(session, request.getRepositories(), record.repoClass, record.repoId));
                    return result;
                }
            }
    
            Metadata metadata;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    		if len(p) != 0 {
    			return Hash{}, errProofFailed
    		}
    		return leafHash, nil
    	}
    
    	if len(p) == 0 {
    		return Hash{}, errProofFailed
    	}
    
    	k, _ := maxpow2(hi - lo)
    	if n < lo+k {
    		th, err := runRecordProof(p[:len(p)-1], lo, lo+k, n, leafHash)
    		if err != nil {
    			return Hash{}, err
    		}
    		return NodeHash(th, p[len(p)-1]), nil
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. pkg/controller/util/node/controller_utils.go

    				// NotFound error means that pod was already deleted.
    				// There is nothing left to do with this pod.
    				continue
    			}
    			return false, err
    		}
    		remaining = true
    	}
    
    	if len(updateErrList) > 0 {
    		return false, utilerrors.NewAggregate(updateErrList)
    	}
    	return remaining, nil
    }
    
    // SetPodTerminationReason attempts to set a reason and message in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. src/net/dnsclient.go

    			if last == '.' {
    				return false
    			}
    			partlen++
    			nonNumeric = true
    		case c == '.':
    			// Byte before dot cannot be dot, dash.
    			if last == '.' || last == '-' {
    				return false
    			}
    			if partlen > 63 || partlen == 0 {
    				return false
    			}
    			partlen = 0
    		}
    		last = c
    	}
    	if last == '-' || partlen > 63 {
    		return false
    	}
    
    	return nonNumeric
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/runtime/profbuf.go

    // entry in the fields overflow and overflowTime. The pending overflow
    // entry can be turned into a real record by either the writer or the
    // reader. If the writer is called to write a new record and finds that
    // the output buffer has room for both the pending overflow entry and the
    // new record, the writer emits the pending overflow entry and the new
    // record into the buffer. If the reader is called to read data and finds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/poset.go

    	s := uint32(0)
    	if strict {
    		s = 1
    	}
    	return posetEdge(t<<1 | s)
    }
    func (e posetEdge) Target() uint32 { return uint32(e) >> 1 }
    func (e posetEdge) Strict() bool   { return uint32(e)&1 != 0 }
    func (e posetEdge) String() string {
    	s := fmt.Sprint(e.Target())
    	if e.Strict() {
    		s += "*"
    	}
    	return s
    }
    
    // posetNode is a node of a DAG within the poset.
    type posetNode struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

            String toString() {
                return descriptor.displayName
            }
    
            boolean isTest() {
                return descriptor instanceof TestOperationDescriptor
            }
    
            boolean isTestClassOrMethod() {
                return isTest() && (descriptor.className || descriptor.methodName)
            }
    
            boolean isTask() {
                return descriptor instanceof TaskOperationDescriptor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring_test.go

    		t.Errorf("Expected null, false, got %#v, %v", result, ok)
    	}
    
    	record1 := "bob"
    	record2 := "alice"
    
    	// when empty, record is stored
    	cache.Set("foo", record1, time.Hour)
    	if result, ok := cache.Get("foo"); !ok || result != record1 {
    		t.Errorf("Expected %#v, true, got %#v, %v", record1, result, ok)
    	}
    
    	// newer record overrides
    	cache.Set("foo", record2, time.Hour)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    		}
    		return nil
    	}
    	return registerPluginFunc
    }
    
    func (og *operationGenerator) GenerateUnregisterPluginFunc(
    	pluginInfo cache.PluginInfo,
    	actualStateOfWorldUpdater ActualStateOfWorldUpdater) func() error {
    
    	unregisterPluginFunc := func() error {
    		if pluginInfo.Handler == nil {
    			return fmt.Errorf("UnregisterPlugin error -- failed to get plugin handler for %s", pluginInfo.SocketPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top