Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for entryAt (0.21 sec)

  1. src/crypto/tls/conn.go

    	} else {
    		head = make([]byte, total)
    		copy(head, in)
    	}
    	tail = head[len(in):]
    	return
    }
    
    // encrypt encrypts payload, adding the appropriate nonce and/or MAC, and
    // appends it to record, which must already contain the record header.
    func (hc *halfConn) encrypt(record, payload []byte, rand io.Reader) ([]byte, error) {
    	if hc.cipher == nil {
    		return append(record, payload...), nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    				return nil
    			}
    			if wildcard.Match("multipart/*", entry.name) {
    				return nil
    			}
    			if wildcard.Match("tmp-old/*", entry.name) {
    				return nil
    			}
    		}
    		fivs, err := entry.fileInfoVersions(bucket)
    		if err != nil {
    			return healObjectFn(bucket, entry.name, "", scanMode)
    		}
    		if opts.Remove && !opts.DryRun {
    			err := z.CheckAbandonedParts(ctx, bucket, entry.name, opts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            }
    
            @Override
            public Set<Entry<K, V>> entrySet() {
                if (delegate == null) {
                    synchronized (this) {
                        if (delegate == null) {
                            delegate = supplier.get();
                        }
                    }
                }
                return delegate.entrySet();
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    func findInlinedCall(f any, maxBytes int) (pc uint64, found bool) {
    	fFunc := runtime.FuncForPC(uintptr(abi.FuncPCABIInternal(f)))
    	if fFunc == nil || fFunc.Entry() == 0 {
    		panic("failed to locate function entry")
    	}
    
    	for offset := 0; offset < maxBytes; offset++ {
    		innerPC := fFunc.Entry() + uintptr(offset)
    		inner := runtime.FuncForPC(innerPC)
    		if inner == nil {
    			// No function known for this PC value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      for (auto& entry : subgraphs_) {
        Subgraph& subgraph = entry.second;
        FixupSourceAndSinkEdges(subgraph.GetGraph());
      }
    
      if (VLOG_IS_ON(1)) {
        // Dump subgraphs.
        for (auto& entry : subgraphs_) {
          DumpGraphToFile(
              absl::StrCat("encapsulate_subgraphs_subgraph_", entry.first),
              *entry.second.GetGraph(), library);
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            """
    
            expect: "a failure"
            fails 'copy'
    
            and: "with a clear failure message"
            failure.assertHasCause("Cannot copy zip entry '$zipFile2!sub/c.txt' to '${file('after/sub/c.txt').toPath()}' because zip entry '$zipFile!sub/c.txt' has already been copied there.")
            failure.assertHasDescription("Execution failed for task ':copy'.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		makeInstance(httpStatic, "4.4.4.4", 8080, httpStatic.Spec.(*networking.ServiceEntry).Ports[1], map[string]string{"foo": "bar"}, PlainText),
    	}
    
    	t.Run("simple entry", func(t *testing.T) {
    		// Create a SE, expect the base instances
    		createConfigs([]*config.Config{httpStatic}, store, t)
    		instances := baseInstances
    		expectServiceInstances(t, sd, httpStatic, 0, instances)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    //
    // There are 3 cases today (as paraphrased from the ELFv2 document):
    //
    //  1. R2 holds the TOC pointer on entry. The call stub must save R2 into the ELFv2 TOC stack save slot.
    //
    //  2. R2 holds the TOC pointer on entry. The caller has already saved R2 to the TOC stack save slot.
    //
    //  3. R2 does not hold the TOC pointer on entry. The caller has no expectations of R2.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            AnnotationNode an = (AnnotationNode) ace.getValue();
            ClassNode type = an.getClassNode();
            resolveOrFail(type, ", unable to find class for annotation", an);
            for (Map.Entry<String, Expression> member : an.getMembers().entrySet()) {
                member.setValue(transform(member.getValue()));
            }
            return ace;
        }
    
        @Override
        public void visitAnnotations(AnnotatedNode node) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                }
                final Map<String, DocumentField> fields = hit.getFields();
                if (fields != null) {
                    final Map<String, Object> docMap = fields.entrySet().stream()
                            .collect(Collectors.toMap(Entry<String, DocumentField>::getKey, e -> (Object) e.getValue().getValues()));
                    docMap.put(fessConfig.getIndexFieldId(), hit.getId());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top