Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 816 for DISABLE (0.11 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            }
        }
    
        @Nullable
        public static <T> T whileDisabled(Factory<T> factory) {
            disable();
            try {
                return factory.create();
            } finally {
                maybeEnable();
            }
        }
    
        public static void whileDisabled(Runnable action) {
            disable();
            try {
                action.run();
            } finally {
                maybeEnable();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. releasenotes/notes/46339.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue: []
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 14:39:12 UTC 2023
    - 153 bytes
    - Viewed (0)
  3. .github/workflows/mint/nginx.conf

            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-ivyDynamicMode/groovy/build.gradle

    // Can enable dynamic resolve mode when you define the repository
    repositories {
        ivy {
            url "http://repo.mycompany.com/repo"
            resolve.dynamicMode = true
        }
    }
    
    // Can use a rule instead to enable (or disable) dynamic resolve mode for all repositories
    repositories.withType(IvyArtifactRepository) {
        resolve.dynamicMode = true
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 415 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/build.gradle

    }
    // end::inferred-task-dep-with-builtby[]
    
    // tag::disable-up-to-date-checks[]
    tasks.register('alwaysInstrumentClasses', Instrument) {
        classFiles.from layout.files(tasks.named('compileJava'))
        destinationDir = file(layout.buildDirectory.dir('instrumented'))
        doNotTrackState("Instrumentation needs to re-run every time")
    }
    // end::disable-up-to-date-checks[]
    
    // tag::git-clone[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/build.gradle.kts

    }
    // end::inferred-task-dep-with-builtby[]
    
    // tag::disable-up-to-date-checks[]
    tasks.register<Instrument>("alwaysInstrumentClasses") {
        classFiles.from(layout.files(tasks.compileJava))
        destinationDir = layout.buildDirectory.dir("instrumented")
        doNotTrackState("Instrumentation needs to re-run every time")
    }
    // end::disable-up-to-date-checks[]
    
    // tag::git-clone[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. .github/workflows/mint/nginx-8-node.conf

            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. releasenotes/notes/drop-legacy-inheritance-flag.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 37095
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 16:23:39 UTC 2023
    - 241 bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/admission.go

    		"Comma-delimited list of: "+strings.Join(a.GenericAdmission.Plugins.Registered(), ", ")+".")
    	fs.MarkDeprecated("admission-control", "Use --enable-admission-plugins or --disable-admission-plugins instead. Will be removed in a future version.")
    	fs.Lookup("admission-control").Hidden = false
    
    	a.GenericAdmission.AddFlags(fs)
    }
    
    // Validate verifies flags passed to kube-apiserver AdmissionOptions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. internal/logger/target/testlogger/testlogger.go

    	action  atomic.Int32
    }
    
    // SetLogTB will set the logger to output to tb.
    // Call the returned function to disable logging.
    func (t *testLogger) SetLogTB(tb testing.TB) func() {
    	return t.setTB(tb, logMessage)
    }
    
    // SetErrorTB will set the logger to output to tb.Error.
    // Call the returned function to disable logging.
    func (t *testLogger) SetErrorTB(tb testing.TB) func() {
    	return t.setTB(tb, errorMessage)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top