Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for stanza (0.26 sec)

  1. src/cmd/objdump/main.go

    // counters written in hexadecimal with optional leading 0x prefix.
    // In this mode, objdump prints a sequence of stanzas of the form:
    //
    //	file:line
    //	 address: assembly
    //	 address: assembly
    //	 ...
    //
    // Each stanza gives the disassembly for a contiguous range of addresses
    // all mapped to the same original source file and line number.
    // This mode is intended for use by pprof.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// When enabled:
    	// 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object.
    	// 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object.
    	// +optional
    	Status *CustomResourceSubresourceStatus `json:"status,omitempty" protobuf:"bytes,1,opt,name=status"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // The output is a sequence of stanzas, one for each package or module
    // name on the command line, separated by blank lines. Each stanza begins
    // with a comment line "# package" or "# module" giving the target
    // package or module. Subsequent lines give a path through the import
    // graph, one package per line. If the package or module is not
    // referenced from the main module, the stanza will display a single
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    		if p.testOf != nil {
    			fmt.Fprintf(&buf, "%s.test\n", p.testOf.path)
    		} else {
    			fmt.Fprintf(&buf, "%s\n", p.path)
    		}
    	}
    	return buf.String()
    }
    
    // Why returns the "go mod why" output stanza for the given package,
    // without the leading # comment.
    // The package graph must have been loaded already, usually by LoadPackages.
    // If there is no reason for the package to be in the current build,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            ':santa-tracker:mergeDebugStartupProfile': SUCCESS,
            ':santa-tracker:mergeExtDexDebug': FROM_CACHE,
            ':santa-tracker:mergeLibDexDebug': FROM_CACHE,
            ':santa-tracker:mergeProjectDexDebug': FROM_CACHE,
            ':santa-tracker:packageDebug': SUCCESS,
            ':santa-tracker:preBuild': UP_TO_DATE,
            ':santa-tracker:preDebugBuild': SUCCESS,
            ':santa-tracker:processDebugJavaRes': SUCCESS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  6. internal/event/target/nats.go

    	}
    	clientID := u.String()
    
    	connOpts := []stan.Option{stan.NatsURL(addressURL)}
    	if n.Streaming.MaxPubAcksInflight > 0 {
    		connOpts = append(connOpts, stan.MaxPubAcksInflight(n.Streaming.MaxPubAcksInflight))
    	}
    	if n.UserCredentials != "" {
    		connOpts = append(connOpts, stan.NatsOptions(nats.UserCredentials(n.UserCredentials)))
    	}
    
    	return stan.Connect(n.Streaming.ClusterID, clientID, connOpts...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/CodeGeneratingSignatureTreeVisitor.java

        CodeGeneratingSignatureTreeVisitor(CodeBlock.Builder result) {
            this.result = result;
        }
    
        /**
         * @param paramIndex index of the parameter in the signatures, -1 stands for the receiver
         */
        void visit(SignatureTree current, int paramIndex) {
            CallInterceptionRequest leafInCurrent = current.getLeafOrNull();
            if (leafInCurrent != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        doLast {
            setMaxWorkers(outputDirectory, 8)
        }
    }
    
    performanceTest.registerAndroidTestProject("santaTrackerAndroidBuild", RemoteProject) {
        remoteUri = 'https://github.com/gradle/santa-tracker-android.git'
        // Pinned from main branch
        ref = 'e9419cad3583427caca97958301ff98fc8e9a1c3'
        doLast {
            addGoogleServicesJson(outputDirectory)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbolProvider.kt

            withValidityAssertion { analysisSession.symbolProvider.getSymbol(this) }
    
        /**
         * Creates [KaVariableLikeSymbol] by [KtParameter].
         *
         * Unfortunately, [KtParameter] in PSI stands for many things, and not all of them are represented by a single type of symbol,
         * so this function does not work for all possible [KtParameter]s.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top