Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for recur1 (0.37 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/AnnotationUtils.java

                            recurse(element);
                        }
                    });
                }
            }
    
            new Recurse().recurse(annotatedElement);
            return result;
        }
    
        public static Optional<? extends AnnotationMirror> findAnnotationMirror(Element element, Class<? extends Annotation> annotationClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 08:22:43 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. internal/config/subnet/subnet.go

    		return "", e
    	}
    	writer.Close()
    
    	r, e := http.NewRequest(http.MethodPost, reqURL, &body)
    	if e != nil {
    		return "", e
    	}
    	r.Header.Add("Content-Type", writer.FormDataContentType())
    
    	return c.submitPost(r)
    }
    
    func (c Config) submitPost(r *http.Request) (string, error) {
    	configLock.RLock()
    	r.Header.Set(xhttp.SubnetAPIKey, c.APIKey)
    	configLock.RUnlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 27 16:35:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

            }
    
            CacheRecord record = new CacheRecord(pluginRealm, pluginArtifacts);
    
            cache.put(key, record);
    
            return record;
        }
    
        public void flush() {
            for (CacheRecord record : cache.values()) {
                ClassRealm realm = record.getRealm();
                try {
                    realm.getWorld().disposeRealm(realm.getId());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/DefaultExtensionRealmCache.java

            }
    
            CacheRecord record = new CacheRecord(extensionRealm, extensionDescriptor, artifacts);
    
            cache.put(key, record);
    
            return record;
        }
    
        public void flush() {
            for (CacheRecord record : cache.values()) {
                ClassRealm realm = record.getRealm();
                try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  5. src/log/slog/record_test.go

    	return r
    }
    
    func attrsSlice(r Record) []Attr {
    	s := make([]Attr, 0, r.NumAttrs())
    	r.Attrs(func(a Attr) bool { s = append(s, a); return true })
    	return s
    }
    
    func attrsEqual(as1, as2 []Attr) bool {
    	return slices.EqualFunc(as1, as2, Attr.Equal)
    }
    
    // Currently, pc(2) takes over 400ns, which is too expensive
    // to call it for every log message.
    func BenchmarkPC(b *testing.B) {
    	for depth := 0; depth < 5; depth++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 15:10:55 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

            }
    
            CacheRecord record = new CacheRecord(artifacts);
            cache.put(key, record);
            return record;
        }
    
        @Override
        public CacheRecord put(Key key, LifecycleExecutionException exception) {
            Objects.requireNonNull(exception, "exception cannot be null");
            assertUniqueKey(key);
            CacheRecord record = new CacheRecord(exception);
            cache.put(key, record);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/crypto/tls/conn_test.go

    				t.Errorf("io.ReadFull = %d, %v", n, err)
    				return
    			}
    
    			length := int(recordHeader[3])<<8 | int(recordHeader[4])
    			if len(record) < length {
    				record = make([]byte, length)
    			}
    
    			n, err = io.ReadFull(clientConn, record[:length])
    			if err != nil || n != length {
    				t.Errorf("io.ReadFull = %d, %v", n, err)
    				return
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. src/runtime/debuglog.go

    //go:nosplit
    func (l *dlogger) end() {
    	if !dlogEnabled {
    		return
    	}
    
    	// Fill in framing header.
    	size := l.w.write - l.w.r.end
    	if !l.w.writeFrameAt(l.w.r.end, size) {
    		throw("record too large")
    	}
    
    	// Commit the record.
    	l.w.r.end = l.w.write
    
    	// Attempt to return this logger to the cache.
    	if putCachedDlogger(l) {
    		return
    	}
    
    	// Return the logger to the global pool.
    	l.owned.Store(0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/configmaplock.go

    	if found {
    		if err := json.Unmarshal(recordBytes, &record); err != nil {
    			return nil, nil, err
    		}
    	}
    	return &record, recordBytes, nil
    }
    
    // Create attempts to create a LeaderElectionRecord annotation
    func (cml *ConfigMapLock) Create(ctx context.Context, ler LeaderElectionRecord) error {
    	recordBytes, err := json.Marshal(ler)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 4K bytes
    - Viewed (0)
  10. src/bufio/bufio_test.go

    	w.Reset(&buf4)
    	w2 := NewWriter(w)
    	w2.WriteString("recur")
    	w2.Flush()
    	if buf4.String() != "recur" {
    		t.Errorf("buf4 = %q, want %q", buf4.String(), "recur")
    	}
    	w.Reset(&buf5)
    	w2.Reset(w)
    	w2.WriteString("recur2")
    	w2.Flush()
    	if buf5.String() != "recur2" {
    		t.Errorf("buf5 = %q, want %q", buf5.String(), "recur2")
    	}
    }
    
    func TestReaderDiscard(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
Back to top