Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 355 for Anonymous2 (0.11 sec)

  1. cmd/object-handlers_test.go

    		}
    	}
    
    	// Test for Anonymous/unsigned http request.
    	anonReq, err := newTestRequest(http.MethodGet, getGetObjectURL("", bucketName, objectName), 0, nil)
    	if err != nil {
    		t.Fatalf("MinIO %s: Failed to create an anonymous request for %s/%s: <ERROR> %v",
    			instanceType, bucketName, objectName, 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
    - 161.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowScope.java

    import org.gradle.api.Incubating;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Augments the cached work graph with {@link FlowAction dataflow actions}, anonymous, parameterized and
     * isolated pieces of work that are triggered solely based on the availability of their input parameters.
     *
     * @since 8.1
     */
    @Incubating
    @ServiceScope(Scope.Build.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/group/authenticated_group_adder.go

    	r, ok, err := g.Authenticator.AuthenticateRequest(req)
    	if err != nil || !ok {
    		return nil, ok, err
    	}
    
    	if r.User.GetName() == user.Anonymous {
    		return r, true, nil
    	}
    	for _, group := range r.User.GetGroups() {
    		if group == user.AllAuthenticated || group == user.AllUnauthenticated {
    			return r, true, nil
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    				fatalTypeError(t, path, a, b, fmt.Sprintf("mismatched field offset %d: %v %v", i, aField.Offset, bField.Offset))
    			}
    			if aField.Anonymous != bField.Anonymous {
    				fatalTypeError(t, path, a, b, fmt.Sprintf("mismatched field anonymous %d: %v %v", i, aField.Anonymous, bField.Anonymous))
    			}
    			if !reflect.DeepEqual(aField.Index, bField.Index) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/device_attribute_to_launch.cc

        if (auto device = op->getAttrOfType<StringAttr>(kDeviceAttr)) {
          if (!device.getValue().empty()) WrapOpInLaunch(op, device.getValue());
        }
        return WalkResult::advance();
      });
    }
    
    }  // anonymous namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDeviceAttributeToLaunchPass() {
      return std::make_unique<DeviceAttributeToLaunch>();
    }
    
    }  // namespace TFDevice
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 00:59:46 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/test_side_effect_analysis.cc

      }
    
      StringRef getArgument() const final { return "tf-test-side-effect-analysis"; }
      StringRef getDescription() const final {
        return "Test pass for analyzing side-effect analysis result";
      }
    };
    
    }  // anonymous namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateTestSideEffectAnalysisPass() {
      return std::make_unique<TestSideEffectAnalysisPass>();
    }
    
    }  // namespace tf_test
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. cmd/auth-handler.go

    	return cred, owner, ErrNone
    }
    
    // checkAdminRequestAuth checks for authentication and authorization for the incoming
    // request. It only accepts V2 and V4 requests. Presigned, JWT and anonymous requests
    // are automatically rejected.
    func checkAdminRequestAuth(ctx context.Context, r *http.Request, action policy.AdminAction, region string) (auth.Credentials, APIErrorCode) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. src/runtime/mem_bsd.go

    func sysReserveOS(v unsafe.Pointer, n uintptr) unsafe.Pointer {
    	flags := int32(_MAP_ANON | _MAP_PRIVATE)
    	if GOOS == "solaris" || GOOS == "illumos" {
    		// Be explicit that we don't want to reserve swap space
    		// for PROT_NONE anonymous mappings. This avoids an issue
    		// wherein large mappings can cause fork to fail.
    		flags |= _sunosMAP_NORESERVE
    	}
    	p, err := mmap(v, n, _PROT_NONE, flags, -1, 0)
    	if err != 0 {
    		return nil
    	}
    	return p
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/infeed_ops_xla_adjust_layout.cc

          if (failed(layout)) return;
    
          op->setAttr("layout", layout.value());
        }
      }
    };
    
    void InfeedsOpsXlaAdjustLayout::runOnOperation() {
      getOperation().walk(runOnInfeedOp);
    }
    
    }  // anonymous namespace
    
    std::unique_ptr<mlir::OperationPass<func::FuncOp>>
    CreateInfeedsOpsXlaAdjustLayoutPass() {
      return std::make_unique<InfeedsOpsXlaAdjustLayout>();
    }
    
    }  // namespace mhlo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. buildscripts/minio-upgrade.sh

    		-f "buildscripts/upgrade-tests/compose.yml" \
    		up -d --build
    
    	add_alias
    
    	mc mb minio/minio-test/
    	mc cp ./minio minio/minio-test/to-read/
    	mc cp /etc/hosts minio/minio-test/to-read/hosts
    	mc anonymous set download minio/minio-test
    
    	verify_checksum_mc ./minio minio/minio-test/to-read/minio
    
    	curl -s http://127.0.0.1:9000/minio-test/to-read/hosts | sha256sum
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top