Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for regarding (0.14 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

    /*
     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    					convertToWasmPluginWrapper(wasmPlugins["authz-high-prio-ingress"]),
    					convertToWasmPluginWrapper(wasmPlugins["global-authz-med-prio-app"]),
    				},
    			},
    		},
    		{
    			// Detailed tests regarding TrafficSelector are in extension_test.go
    			// Just test the integrity here.
    			// This testcase is identical with "testns-2", but `listenerInfo`` is specified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsElevateWordCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setReading_SpanTerm(String reading) {
            setReading_SpanTerm("reading", null);
        }
    
        public void setReading_SpanTerm(String reading, ConditionOptionCall<SpanTermQueryBuilder> opLambda) {
            SpanTermQueryBuilder builder = regSpanTermQ("reading", reading);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. src/time/time.go

    // in this package the Time returned by [time.Now] contains both a wall
    // clock reading and a monotonic clock reading; later time-telling
    // operations use the wall clock reading, but later time-measuring
    // operations, specifically comparisons and subtractions, use the
    // monotonic clock reading.
    //
    // For example, this code always computes a positive elapsed time of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsElevateWordCA.java

        }
    
        public void setReading_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setReading_Terms("reading", opLambda, null);
        }
    
        public void setReading_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsElevateWordCA> aggsLambda) {
            setReading_Terms("reading", opLambda, aggsLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    		ServeFile(w, r, "testdata/file")
    	})).ts
    	c := ts.Client()
    
    	var err error
    
    	file, err := os.ReadFile(testFile)
    	if err != nil {
    		t.Fatal("reading file:", err)
    	}
    
    	// set up the Request (re-used for all tests)
    	var req Request
    	req.Header = make(Header)
    	if req.URL, err = url.Parse(ts.URL); err != nil {
    		t.Fatal("ParseURL:", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    				close(clientStdoutReadDone)
    				assert.NoError(t, err, "reading from stdout stream")
    				assert.Equal(t, expectedStdout, string(output[0:n]), "stdout")
    			}
    
    			if test.stderr && !test.tty {
    				output := make([]byte, 10)
    				n, err := stderrStream.Read(output)
    				close(clientStderrReadDone)
    				assert.NoError(t, err, "reading from stderr stream")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    // for io.EOF.
    //
    // If an EOF happens after reading some but not all the bytes,
    // ReadFile returns ErrUnexpectedEOF.
    //
    // If the BitrotVerifier is not nil or not verified ReadFile
    // tries to verify whether the disk has bitrot.
    //
    // Additionally ReadFile also starts reading from an offset. ReadFile
    // semantics are same as io.ReadFull.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	//
    	// For server requests, the Trailer map initially contains only the
    	// trailer keys, with nil values. (The client declares which trailers it
    	// will later send.)  While the handler is reading from Body, it must
    	// not reference Trailer. After reading from Body returns EOF, Trailer
    	// can be read again and will contain non-nil values, if they were sent
    	// by the client.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. src/strings/strings_test.go

    				break
    			}
    			if e != nil {
    				t.Errorf("Reading %q: %s", s, e)
    				break
    			}
    			res.WriteByte(b)
    			// unread and read again
    			e = reader.UnreadByte()
    			if e != nil {
    				t.Errorf("Unreading %q: %s", s, e)
    				break
    			}
    			b1, e := reader.ReadByte()
    			if e != nil {
    				t.Errorf("Reading %q after unreading: %s", s, e)
    				break
    			}
    			if b1 != b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top