Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 934 for Missing (0.13 sec)

  1. pkg/proxy/util/nfacct/nfacct_linux_test.go

    					0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01,
    				}}},
    			},
    			// expected calls: NFNL_MSG_ACCT_GET
    			netlinkCalls: 1,
    		},
    		{
    			name:        "missing netfilter generic header",
    			counterName: "metrics",
    			counter:     nil,
    			handler: &fakeHandler{
    				responses: [][][]byte{{{
    					0x01, 0x00, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/seh.go

    			pushbp = p
    			break
    		}
    		if p.Pos.Xlogue() == src.PosPrologueEnd {
    			break
    		}
    	}
    	if pushbp == nil {
    		ctxt.Diag("missing frame pointer instruction: PUSHQ BP")
    		return
    	}
    
    	// It must be followed by a MOVQ SP, BP.
    	movbp := pushbp.Link
    	if movbp == nil {
    		ctxt.Diag("missing frame pointer instruction: MOVQ SP, BP")
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_client_test.go

    		expectedVolumeMountGroup string
    		mustFail                 bool
    		err                      error
    	}{
    		{name: "test ok", volID: "vol-test", targetPath: testPath},
    		{name: "missing volID", targetPath: testPath, mustFail: true},
    		{name: "missing target path", volID: "vol-test", mustFail: true},
    		{name: "bad fs", volID: "vol-test", targetPath: testPath, fsType: "badfs", mustFail: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. docs/distributed/decom-encrypted-kes.sh

    out=$(diff -qpruN expanded_ns.txt decommissioned_ns.txt)
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected no missing entries after decommission: $out"
    	exit 1
    fi
    
    out=$(diff -qpruN expanded_ns_versions.txt decommissioned_ns_versions.txt)
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected no missing entries after decommission: $out"
    	exit 1
    fi
    
    out1=$(diff -qpruN expanded_ns_1.txt decommissioned_ns_1.txt)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    import javax.inject.Inject
    
    abstract class AbstractPluginValidationIntegrationSpec extends AbstractIntegrationSpec implements ValidationMessageChecker {
    
        def "detects missing annotations on Java properties"() {
            javaTaskSource << """
                import org.gradle.api.*;
                import org.gradle.api.tasks.*;
                import org.gradle.work.*;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

            and:
            verifyAll(receivedProblem) {
                fqid == 'validation:property-validation:missing-annotation'
                contextualLabel == 'Type \'MyTask\' property \'tree.nonAnnotated\' is missing an input or output annotation'
                details == 'A property without annotation isn\'t considered during up-to-date checking'
                solutions == [
                    'Add an input or output annotation',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/import.go

    	var message string
    	if e.found {
    		message = fmt.Sprintf("missing go.sum entry needed to verify package %s%s is provided by exactly one module", e.importPath, importParen)
    	} else {
    		message = fmt.Sprintf("missing go.sum entry for module providing package %s%s", e.importPath, importParen)
    	}
    	var hint string
    	if e.importer == "" {
    		// Importing package is unknown, or the missing package was named on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    func NewDynamicCAContentFromFile(purpose, filename string) (*DynamicFileCAContent, error) {
    	if len(filename) == 0 {
    		return nil, fmt.Errorf("missing filename for ca bundle")
    	}
    	name := fmt.Sprintf("%s::%s", purpose, filename)
    
    	ret := &DynamicFileCAContent{
    		name:     name,
    		filename: filename,
    		queue: workqueue.NewTypedRateLimitingQueueWithConfig(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. docs/site-replication/run-multi-site-minio-idp.sh

    ./mc admin user info minio1 foobar
    if [ $? -ne 0 ]; then
    	echo "policy mapping missing on 'minio1', exiting.."
    	exit_1
    fi
    
    ./mc admin user info minio2 foobar
    if [ $? -ne 0 ]; then
    	echo "policy mapping missing on 'minio2', exiting.."
    	exit_1
    fi
    
    ./mc admin user info minio3 foobar
    if [ $? -ne 0 ]; then
    	echo "policy mapping missing on 'minio3', exiting.."
    	exit_1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/tidy.go

    	Short:     "add missing and remove unused modules",
    	Long: `
    Tidy makes sure go.mod matches the source code in the module.
    It adds any missing modules necessary to build the current module's
    packages and dependencies, and it removes unused modules that
    don't provide any relevant packages. It also adds any missing entries
    to go.sum and removes any unnecessary ones.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top