Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 668 for detective (0.12 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/Version1LockStateSerializer.java

            }
    
            @Override
            public boolean hasBeenUpdatedSince(FileLock.State state) {
                throw new UnsupportedOperationException("This protocol version does not support detecting changes by other processes.");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    }, {
    	desc: "directive",
    	toks: []Token{
    		Directive("foo"),
    	},
    	want: `<!foo>`,
    }, {
    	desc: "more complex directive",
    	toks: []Token{
    		Directive("DOCTYPE doc [ <!ELEMENT doc '>'> <!-- com>ment --> ]"),
    	},
    	want: `<!DOCTYPE doc [ <!ELEMENT doc '>'> <!-- com>ment --> ]>`,
    }, {
    	desc: "directive instruction with bad name",
    	toks: []Token{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. test/fixedbugs/issue22662b.go

    package main
    
    import (
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"strings"
    )
    
    // Each of these tests is expected to fail (missing package clause)
    // at the position determined by the preceding line directive.
    var tests = []struct {
    	src, pos string
    }{
    	{"//line :10\n", ":10:"},                   // no filename means no filename
    	{"//line :10:4\n", "filename:10:4"},        // no filename means use existing filename
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.instrumented-project")
    }
    
    description = """JVM-specific testing functionality, including the Test type and support for configuring options for and detecting
    tests written in various JVM testing frameworks. This project "extends" the testing-base project by sub-typing many
    of its abstractions with JVM-specific abstractions or implementations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/runtime/race0.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !race
    
    // Dummy race detection API, used when not built with -race.
    
    package runtime
    
    import (
    	"unsafe"
    )
    
    const raceenabled = false
    
    // Because raceenabled is false, none of these functions should be called.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/DefaultTestClassScannerTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.detection
    
    import org.gradle.api.file.FileTree
    import org.gradle.api.file.FileVisitDetails
    import org.gradle.api.file.FileVisitor
    import org.gradle.api.file.RelativePath
    import org.gradle.api.internal.file.DefaultFileVisitDetails
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/noder/posmap.go

    		return m.cache.base
    	}
    
    	b1, ok := m.bases[b0]
    	if !ok {
    		fn := b0.Filename()
    		absfn := trimFilename(b0)
    
    		if b0.IsFileBase() {
    			b1 = src.NewFileBase(fn, absfn)
    		} else {
    			// line directive base
    			p0 := b0.Pos()
    			p0b := p0.Base()
    			if p0b == b0 {
    				panic("infinite recursion in makeSrcPosBase")
    			}
    			p1 := src.MakePos(m.makeSrcPosBase(p0b), p0.Line(), p0.Col())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 27 03:43:35 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/PathTraversalChecker.java

    public class PathTraversalChecker {
    
        /**
         * Checks the entry name for path traversal vulnerable sequences.
         *
         * This code is used for path traversal, ZipSlip and TarSlip detection.
         *
         * <b>IMPLEMENTATION NOTE</b>
         * We do it this way instead of the way recommended in <a href="https://snyk.io/research/zip-slip-vulnerability"></a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/networking.go

    	ListenerProtocolUnknown = iota
    	// ListenerProtocolTCP is a TCP listener.
    	ListenerProtocolTCP
    	// ListenerProtocolHTTP is an HTTP listener.
    	ListenerProtocolHTTP
    	// ListenerProtocolAuto enables auto protocol detection
    	ListenerProtocolAuto
    )
    
    // ModelProtocolToListenerProtocol converts from a config.Protocol to its corresponding plugin.ListenerProtocol
    func ModelProtocolToListenerProtocol(p protocol.Instance) ListenerProtocol {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 09:42:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. pkg/kube/krt/README.md

    })
    ```
    
    The `Fetch` operation enables querying against other collections.
    If the result of the `Fetch` operation changes, the collection will automatically be recomputed; the framework handles the state and event detection.
    In the above example, the provided function will be called (at least) every time there is a change to a configmap.
    The `ConfigMapCount` collection will produce events only when the count changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top