Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 355 for Anonymous2 (0.17 sec)

  1. cmd/bucket-handlers_test.go

    		}
    
    	}
    
    	// Test for Anonymous/unsigned http request.
    	anonReq, err := newTestRequest(http.MethodHead, getHEADBucketURL("", bucketName), 0, nil)
    	if err != nil {
    		t.Fatalf("MinIO %s: Failed to create an anonymous request for bucket \"%s\": <ERROR> %v",
    			instanceType, bucketName, err)
    	}
    
    	// ExecObjectLayerAPIAnonTest - Calls the HTTP API handler using the anonymous request, validates the ErrAccessDeniedResponse,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/anonymousObject.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = object {
                fun foo() {}
            }
        type = <anonymous>
      hasEscapingJumps = false
      hasJumps = false
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 379 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiverExplicit.capturing.txt

    ExtensionReceiver[name: with; isMutated: false; displayText: this@with]
        with@fun R|kotlin/String|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=EXACTLY_ONCE>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 188 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/groovy/settings.gradle

    rootProject.name = 'declared-substitution'
    
    include 'app'
    
    // tag::composite_substitution[]
    includeBuild('anonymous-library') {
        dependencySubstitution {
            substitute module('org.sample:number-utils') using project(':')
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 270 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/groovy/anonymous-library/settings.gradle

    rootProject.name = 'anonymous-library'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/tests/sanityCheck.sample.conf

    commands: [{
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: anonymous-library
        executable: gradle
        args: tasks -q
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 150 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

            file("buildSrc/src/main/java/${anonymousClassName}.java") << javaClass(anonymousClassName, anonymousClassWritingFile("ACTION", "anonymous"))
            buildFile << """
                task myTask(type: TaskWithActionProperty) {
                    outputs.cacheIf { true }
                    action = providers.gradleProperty("anonymous").isPresent()
                        ? ${anonymousClassName}.ACTION
                        : ${lambdaClassName}.ACTION
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testgodefs/testdata/anonunion.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    package main
    
    // This file tests that when cgo -godefs sees a struct with a field
    // that is an anonymous union, the first field in the union is
    // promoted to become a field of the struct.  See issue 6677 for
    // background.
    
    /*
    typedef struct {
    	union {
    		long l;
    		int c;
    	};
    } t;
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 515 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/kotlin/settings.gradle.kts

    rootProject.name = "declared-substitution"
    
    include("app")
    
    // tag::composite_substitution[]
    includeBuild("anonymous-library") {
        dependencySubstitution {
            substitute(module("org.sample:number-utils")).using(project(":"))
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 273 bytes
    - Viewed (0)
  10. test/fixedbugs/issue10219.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 10219: failure of inlinable function that uses embedded types
    // in an anonymous struct via :=.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 15 06:04:51 UTC 2015
    - 297 bytes
    - Viewed (0)
Back to top