Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 396 for writing (0.18 sec)

  1. src/testing/testing.go

    		// different file descriptors are delivered whole, so that writing
    		// AAA to stdout and BBB to stderr simultaneously produces
    		// AAABBB or BBBAAA on the pipe, not something like AABBBA.
    		// However, the exception to this is when the pipe fills: in that
    		// case, Go's use of non-blocking I/O means that writing AAA
    		// or BBB might be split across multiple system calls, making it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    * Use of the <<plugins#sec:plugins_block,plugins {}>> block to declare Gradle plugins significantly improves the editing experience and is highly recommended.
    
    [[sec:ide_support]]
    == IDE support
    
    The Kotlin DSL is fully supported by IntelliJ IDEA and Android Studio. Other IDEs do not yet provide helpful tools for editing Kotlin DSL files, but you can still import Kotlin-DSL-based builds and work with them as usual.
    
    .IDE support matrix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

      if [ $? == "1" ]; then
        echo "time out on waiting $node_name exist"
        exit 1
      fi
    
      local system_node_ready_time=300
      local node_ready="${KUBECTL} --kubeconfig '${CERT_DIR}/admin.kubeconfig' wait --for=condition=Ready --timeout=60s nodes $node_name"
      kube::util::wait_for_success "$system_node_ready_time" "$interval_time" "$node_ready"
      if [ $? == "1" ]; then
        echo "time out on waiting $node_name info"
        exit 1
      fi
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    // in the .loader section and in the symbol table as an External Reference.
    // The symbol "s" is transformed to SXCOFFTOC to end up in .data section.
    // However, there is no writing protection on those symbols and
    // it might need to be added.
    // TODO(aix): Handles dynamic symbols without library.
    func (f *xcoffFile) adddynimpsym(ctxt *Link, s loader.Sym) {
    	// Check that library name is given.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		)
    		func() {
    			defer close(callerRoundTripDoneCh)
    
    			t.Logf("Waiting for the request: %q to time out", rquestTimesOutPath)
    			response, err = requestGetter(rquestTimesOutPath)
    			if isClientTimeout(err) {
    				t.Fatalf("the client has unexpectedly timed out - request: %q error: %s", rquestTimesOutPath, err.Error())
    			}
    		}()
    
    		t.Logf("Waiting for the inner handler of the request: %q to complete", rquestTimesOutPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	// Generate a trampoline for a call from s to rs if necessary. ri is
    	// index of the relocation.
    	Trampoline func(ctxt *Link, ldr *loader.Loader, ri int, rs, s loader.Sym)
    
    	// Assembling the binary breaks into two phases, writing the code/data/
    	// dwarf information (which is rather generic), and some more architecture
    	// specific work like setting up the elf headers/dynamic relocations, etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    		// additional WaitDelay to finish writing its output streams.
    		if testWaitDelay < 1*time.Minute {
    			testKillTimeout = testTimeout + 1*time.Minute
    		} else {
    			testKillTimeout = testTimeout + testWaitDelay
    		}
    	}
    
    	// Read testcache expiration time, if present.
    	// (We implement go clean -testcache by writing an expiration date
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. configure.py

    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top